diplay restoring when restoring (#2476)

This commit is contained in:
Matt Hill
2023-10-25 12:08:39 -06:00
committed by GitHub
parent 65728eb6ab
commit 9a545f176d

View File

@@ -6,24 +6,25 @@
[style.font-style]="style" [style.font-style]="style"
[style.font-weight]="weight" [style.font-weight]="weight"
> >
<span *ngIf="!installProgress"> {{ (connected$ | async) ? rendering.display : 'Unknown' }}
{{ (connected$ | async) ? rendering.display : 'Unknown' }}
<span *ngIf="rendering.showDots" class="loading-dots"></span> <span
<span *ngIf="
*ngIf=" rendering.display === PR[PS.Stopping].display &&
rendering.display === PR[PS.Stopping].display && (sigtermTimeout | durationToSeconds) > 30
(sigtermTimeout | durationToSeconds) > 30 "
" >
>this may take a while</span this may take a while
>
</span> </span>
<span *ngIf="installProgress"> <span *ngIf="installProgress">
<ion-text <ion-text
*ngIf="installProgress | installProgressDisplay as progress" *ngIf="installProgress | installProgressDisplay as progress"
color="primary" color="primary"
> >
Installing {{ progress }}
<span class="loading-dots"></span>{{ progress }}
</ion-text> </ion-text>
</span> </span>
<span *ngIf="rendering.showDots" class="loading-dots"></span>
</p> </p>