diff --git a/ui/src/app/components/skeleton-list/skeleton-list.component.ts b/ui/src/app/components/skeleton-list/skeleton-list.component.ts index 2f8e5d793..9cdf215b4 100644 --- a/ui/src/app/components/skeleton-list/skeleton-list.component.ts +++ b/ui/src/app/components/skeleton-list/skeleton-list.component.ts @@ -6,8 +6,8 @@ import { Component, Input } from '@angular/core' styleUrls: ['./skeleton-list.component.scss'], }) export class SkeletonListComponent { - @Input() groups: number - @Input() rows: number = 3 + @Input() groups: string + @Input() rows: string = '3' groupsArr: number[] = [] rowsArr: number[] = [] diff --git a/ui/src/app/pages/apps-routes/app-metrics/app-metrics.page.html b/ui/src/app/pages/apps-routes/app-metrics/app-metrics.page.html index a624d2a26..5aee68a73 100644 --- a/ui/src/app/pages/apps-routes/app-metrics/app-metrics.page.html +++ b/ui/src/app/pages/apps-routes/app-metrics/app-metrics.page.html @@ -9,7 +9,7 @@ - + {{ metric.key }} diff --git a/ui/src/app/pages/apps-routes/app-show/app-show.page.html b/ui/src/app/pages/apps-routes/app-show/app-show.page.html index a5dac0d74..803d9b5ed 100644 --- a/ui/src/app/pages/apps-routes/app-show/app-show.page.html +++ b/ui/src/app/pages/apps-routes/app-show/app-show.page.html @@ -100,7 +100,7 @@

{{ pkg.installed.status['dependency-errors'][dep.key] ? pkg.installed.status['dependency-errors'][dep.key].type : 'satisfied' }}

- + View 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 0db97ba51..ccf1a516e 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 @@ -38,7 +38,7 @@ export class MarketplaceShowPage { private readonly navCtrl: NavController, private readonly emver: Emver, private readonly patch: PatchDbService, - readonly marketplaceService: MarketplaceService, + public readonly marketplaceService: MarketplaceService, ) { } async ngOnInit () { diff --git a/ui/src/app/pages/server-routes/server-metrics/server-metrics.page.html b/ui/src/app/pages/server-routes/server-metrics/server-metrics.page.html index 2ff89e731..13e5ff85a 100644 --- a/ui/src/app/pages/server-routes/server-metrics/server-metrics.page.html +++ b/ui/src/app/pages/server-routes/server-metrics/server-metrics.page.html @@ -8,7 +8,7 @@ - + diff --git a/ui/src/app/services/patch-db/data-model.ts b/ui/src/app/services/patch-db/data-model.ts index 30d19af6c..c225f5893 100644 --- a/ui/src/app/services/patch-db/data-model.ts +++ b/ui/src/app/services/patch-db/data-model.ts @@ -297,7 +297,7 @@ export interface HealthCheckResultFailure { error: string } -export type DependencyError = DependencyErrorNotInstalled | DependencyErrorNotRunning | DependencyErrorIncorrectVersion | DependencyErrorConfigUnsatisfied | DependencyErrorHealthCheckFailed | DependencyErrorInterfaceHealthChecksFailed +export type DependencyError = DependencyErrorNotInstalled | DependencyErrorNotRunning | DependencyErrorIncorrectVersion | DependencyErrorConfigUnsatisfied | DependencyErrorHealthCheckFailed | DependencyErrorInterfaceHealthCheckFailed export enum DependencyErrorType { NotInstalled = 'not-installed', @@ -305,7 +305,7 @@ export enum DependencyErrorType { IncorrectVersion = 'incorrect-version', ConfigUnsatisfied = 'config-unsatisfied', HealthCheckFailed = 'health-check-failed', - InterfaceHealthChecksFailed = 'interface-health-checks-failed', + InterfaceHealthCheckFailed = 'interface-health-checks-failed', } export interface DependencyErrorNotInstalled { @@ -332,8 +332,8 @@ export interface DependencyErrorHealthCheckFailed { check: HealthCheckResult } -export interface DependencyErrorInterfaceHealthChecksFailed { - type: DependencyErrorType.InterfaceHealthChecksFailed +export interface DependencyErrorInterfaceHealthCheckFailed { + type: DependencyErrorType.InterfaceHealthCheckFailed failures: { [id: string]: HealthCheckResult } }