mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 02:11:53 +00:00
* allow mdns cifs shares * regex and messaging for cifs * Update install-wizard.component.ts * refactor * always include leading slash when saving path * add avahi-utils Co-authored-by: Matt Hill <matthewonthemoon@gmail.com> Co-authored-by: Matt Hill <MattDHill@users.noreply.github.com>
23 lines
669 B
HTML
23 lines
669 B
HTML
<p
|
|
[style.color]="disconnected ? 'gray' : 'var(--ion-color-' + rendering.color + ')'"
|
|
[style.font-size]="size"
|
|
[style.font-style]="style"
|
|
[style.font-weight]="weight"
|
|
>
|
|
<span *ngIf= "!installProgress">
|
|
{{ disconnected ? 'Unknown' : rendering.display }}
|
|
<span *ngIf="rendering.showDots" class="loading-dots"></span>
|
|
</span>
|
|
<span *ngIf="installProgress">
|
|
<span *ngIf="installProgress < 99">
|
|
Installing
|
|
<span class="loading-dots"></span>{{ installProgress }}%
|
|
</span>
|
|
<span *ngIf="installProgress >= 99">
|
|
Finalizing install. This could take a minute
|
|
<span class="loading-dots"></span>
|
|
</span>
|
|
</span>
|
|
|
|
</p>
|