bug fix show page (#1021)

* bug fix show page

* nologs

Co-authored-by: Drew Ansbacher <drew.ansbacher@spiredigital.com>
This commit is contained in:
Drew Ansbacher
2022-01-03 13:55:28 -07:00
committed by Aiden McClelland
parent 5d2198613b
commit edf032a837

View File

@@ -1,5 +1,14 @@
<ng-container *ngIf="pkg$ | async as pkg">
<app-show-header [pkg]="pkg"></app-show-header>
<!-- ** installing, updating, restoring ** -->
<ion-content *ngIf="showProgress(pkg)">
<app-show-progress
*ngIf="pkg['install-progress'] | installState as installProgress"
[pkg]="pkg"
[installProgress]="installProgress"
></app-show-progress>
</ion-content>
<ion-content *ngIf="pkg | toDependencies | async as dependencies">
<ion-item-group *ngIf="pkg | toStatus as status">
@@ -28,13 +37,5 @@
</ng-container>
</ion-item-group>
<!-- ** installing, updating, restoring ** -->
<ng-container *ngIf="showProgress(pkg)">
<app-show-progress
*ngIf="pkg['install-progress'] | installState as installProgress"
[pkg]="pkg"
[installProgress]="installProgress"
></app-show-progress>
</ng-container>
</ion-content>
</ng-container>