mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-31 04:23:40 +00:00
bug fix show page (#1021)
* bug fix show page * nologs Co-authored-by: Drew Ansbacher <drew.ansbacher@spiredigital.com>
This commit is contained in:
committed by
Aiden McClelland
parent
5d2198613b
commit
edf032a837
@@ -1,5 +1,14 @@
|
|||||||
<ng-container *ngIf="pkg$ | async as pkg">
|
<ng-container *ngIf="pkg$ | async as pkg">
|
||||||
<app-show-header [pkg]="pkg"></app-show-header>
|
<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-content *ngIf="pkg | toDependencies | async as dependencies">
|
||||||
<ion-item-group *ngIf="pkg | toStatus as status">
|
<ion-item-group *ngIf="pkg | toStatus as status">
|
||||||
@@ -28,13 +37,5 @@
|
|||||||
</ng-container>
|
</ng-container>
|
||||||
</ion-item-group>
|
</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>
|
</ion-content>
|
||||||
</ng-container>
|
</ng-container>
|
||||||
|
|||||||
Reference in New Issue
Block a user