diff --git a/ui/src/app/pages/marketplace-routes/marketplace-list/marketplace-list.page.html b/ui/src/app/pages/marketplace-routes/marketplace-list/marketplace-list.page.html index fd2298753..bc1352bd5 100644 --- a/ui/src/app/pages/marketplace-routes/marketplace-list/marketplace-list.page.html +++ b/ui/src/app/pages/marketplace-routes/marketplace-list/marketplace-list.page.html @@ -11,7 +11,7 @@ - + @@ -39,7 +39,7 @@
- +
@@ -53,7 +53,7 @@

{{ pkg.manifest.title }}

{{ pkg.manifest.description.short }}

- +

Installed Update Available diff --git a/ui/src/app/pages/marketplace-routes/marketplace-show/marketplace-show.page.ts b/ui/src/app/pages/marketplace-routes/marketplace-show/marketplace-show.page.ts index ab0951db2..efe0be868 100644 --- a/ui/src/app/pages/marketplace-routes/marketplace-show/marketplace-show.page.ts +++ b/ui/src/app/pages/marketplace-routes/marketplace-show/marketplace-show.page.ts @@ -131,8 +131,6 @@ export class MarketplaceShowPage { }), ) if (cancelled) return - await pauseFor(250) - this.navCtrl.back() } async update (action: 'update' | 'downgrade') { diff --git a/ui/src/app/pages/marketplace-routes/marketplace.service.ts b/ui/src/app/pages/marketplace-routes/marketplace.service.ts index 90b23fbb7..067ef4c7d 100644 --- a/ui/src/app/pages/marketplace-routes/marketplace.service.ts +++ b/ui/src/app/pages/marketplace-routes/marketplace.service.ts @@ -9,7 +9,7 @@ import { PackageDataEntry } from 'src/app/services/patch-db/data-model' }) export class MarketplaceService { pkgs: { [id: string]: MarketplacePkg } = { } - updates: MarketplacePkg[] = null + updates: MarketplacePkg[] = [] releaseNotes: { [id: string]: { [version: string]: string } } = { }