Multiple bugs and styling (#1975)

* remove updates from marketplace, fix search, link updates to marketplace, styling

* add dependency checks and error handling to updates tab

* add circle around back buttons
This commit is contained in:
Matt Hill
2022-11-26 13:18:10 -07:00
committed by Aiden McClelland
parent 9146c31abf
commit 2336e36314
15 changed files with 388 additions and 336 deletions

View File

@@ -1,7 +1,20 @@
<ng-container *ngIf="pkg$ | async as pkg">
<app-show-header [pkg]="pkg"></app-show-header>
<ion-header>
<ion-toolbar>
<ion-buttons slot="start">
<ion-back-button defaultHref="services"></ion-back-button>
</ion-buttons>
<ion-title>Service Details</ion-title>
</ion-toolbar>
</ion-header>
<ion-content class="ion-padding">
<ng-container *ngIf="pkg$ | async as pkg">
<div class="ion-text-center ion-padding-top">
<img [src]="pkg['static-files'].icon" alt="" style="width: 84px" />
<h1>{{ pkg.manifest.title }}</h1>
<h4>{{ pkg.manifest.version | displayEmver }}</h4>
</div>
<ion-content>
<!-- ** installing, updating, restoring ** -->
<ng-container *ngIf="showProgress(pkg); else installed">
<app-show-progress
@@ -73,5 +86,5 @@
</ion-grid>
</ng-template>
</ng-template>
</ion-content>
</ng-container>
</ng-container>
</ion-content>