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 acaf39b52..9df6c3fff 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 @@ -62,13 +62,14 @@ - +

{{ health.key }}

Result: {{ result | titlecase }}

+

{{ $any(health.value).message }}

{{ $any(health.value).error }}

diff --git a/ui/src/app/services/patch-db/data-model.ts b/ui/src/app/services/patch-db/data-model.ts index 999aca90a..6f352799e 100644 --- a/ui/src/app/services/patch-db/data-model.ts +++ b/ui/src/app/services/patch-db/data-model.ts @@ -272,28 +272,23 @@ export enum HealthResult { } export interface HealthCheckResultStarting { - time: string // UTC date string result: HealthResult.Starting } export interface HealthCheckResultDisabled { - time: string // UTC date string result: HealthResult.Disabled } export interface HealthCheckResultSuccess { - time: string // UTC date string result: HealthResult.Success } export interface HealthCheckResultLoading { - time: string // UTC date string result: HealthResult.Loading message: string } export interface HealthCheckResultFailure { - time: string // UTC date string result: HealthResult.Failure error: string }