diff --git a/web/projects/ui/src/app/pages/apps-routes/app-show/components/app-show-progress/app-show-progress.component.html b/web/projects/ui/src/app/pages/apps-routes/app-show/components/app-show-progress/app-show-progress.component.html
index ea80b3003..1b1714f64 100644
--- a/web/projects/ui/src/app/pages/apps-routes/app-show/components/app-show-progress/app-show-progress.component.html
+++ b/web/projects/ui/src/app/pages/apps-routes/app-show/components/app-show-progress/app-show-progress.component.html
@@ -2,7 +2,7 @@
{{ phase.name }}
- : {{ progress * 100 }}%
+ : {{ progress }}%
diff --git a/web/projects/ui/src/app/pages/marketplace-routes/marketplace-list/marketplace-list.page.ts b/web/projects/ui/src/app/pages/marketplace-routes/marketplace-list/marketplace-list.page.ts
index 0f0fa5752..c08f00703 100644
--- a/web/projects/ui/src/app/pages/marketplace-routes/marketplace-list/marketplace-list.page.ts
+++ b/web/projects/ui/src/app/pages/marketplace-routes/marketplace-list/marketplace-list.page.ts
@@ -22,11 +22,7 @@ export class MarketplaceListPage {
readonly store$ = this.marketplaceService.getSelectedStore$().pipe(
map(({ info, packages }) => {
const categories = new Map()
- if (info.categories['featured'])
- categories.set('featured', info.categories['featured'])
- Object.keys(info.categories).forEach(c =>
- categories.set(c, info.categories[c]),
- )
+
categories.set('all', {
name: 'All',
description: {
@@ -35,6 +31,10 @@ export class MarketplaceListPage {
},
})
+ Object.keys(info.categories).forEach(c =>
+ categories.set(c, info.categories[c]),
+ )
+
return { categories, packages }
}),
)
@@ -88,7 +88,7 @@ export class MarketplaceListPage {
private readonly route: ActivatedRoute,
) {}
- category = 'featured'
+ category = 'all'
query = ''
async presentModalMarketplaceSettings() {
diff --git a/web/projects/ui/src/app/pages/updates/updates.page.html b/web/projects/ui/src/app/pages/updates/updates.page.html
index fd4d19133..31c712d98 100644
--- a/web/projects/ui/src/app/pages/updates/updates.page.html
+++ b/web/projects/ui/src/app/pages/updates/updates.page.html
@@ -53,7 +53,7 @@
*ngIf="local.stateInfo.state === 'updating' else notUpdating"
>
= this.patch
.watch$('ui', 'marketplace', 'knownHosts')
.pipe(
- map((hosts: UIMarketplaceData['knownHosts']) => {
+ map(hosts => {
const { start9, community } = this.config.marketplace
let arr = [
toStoreIdentity(start9, hosts[start9]),