From c3e96ef5df2d25e6a38f3906f9f08ee4276008c1 Mon Sep 17 00:00:00 2001 From: Matt Hill Date: Thu, 3 Dec 2020 10:23:23 -0700 Subject: [PATCH] crashed not crashing --- ui/src/app/util/status-rendering.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/app/util/status-rendering.ts b/ui/src/app/util/status-rendering.ts index fe00a0bf6..28ee06074 100644 --- a/ui/src/app/util/status-rendering.ts +++ b/ui/src/app/util/status-rendering.ts @@ -16,7 +16,7 @@ export const AppStatusRendering: { } = { [AppStatus.UNKNOWN]: { display: 'Connecting', color: 'dark', showDots: true }, [AppStatus.REMOVING]: { display: 'Removing', color: 'dark', showDots: true }, - [AppStatus.CRASHED]: { display: 'Crashing', color: 'danger', showDots: true }, + [AppStatus.CRASHED]: { display: 'Crashed', color: 'danger', showDots: false }, [AppStatus.NEEDS_CONFIG]: { display: 'Needs Config', color: 'warning', showDots: false }, [AppStatus.RUNNING]: { display: 'Running', color: 'success', showDots: false }, [AppStatus.UNREACHABLE]: { display: 'Unreachable', color: 'danger', showDots: false },