From 28c062a22f31f54f906844947fc8fdde516ad8aa Mon Sep 17 00:00:00 2001 From: Phil Renaud Date: Mon, 7 Oct 2024 16:56:29 -0400 Subject: [PATCH] Default colour to prevent HDS error --- .changelog/24133.txt | 3 +++ ui/app/components/lifecycle-chart-row.js | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 .changelog/24133.txt diff --git a/.changelog/24133.txt b/.changelog/24133.txt new file mode 100644 index 00000000000..cf3ab07f80c --- /dev/null +++ b/.changelog/24133.txt @@ -0,0 +1,3 @@ +```release-note:improvement +ui: Indicates prestart/poststart tasks by running/failed/pending status +``` diff --git a/ui/app/components/lifecycle-chart-row.js b/ui/app/components/lifecycle-chart-row.js index f4a235f8da4..663ad51e066 100644 --- a/ui/app/components/lifecycle-chart-row.js +++ b/ui/app/components/lifecycle-chart-row.js @@ -12,7 +12,7 @@ import classic from 'ember-classic-decorator'; @tagName('') export default class LifecycleChartRow extends Component { get taskColor() { - let color; + let color = 'neutral'; if (this.taskState?.state === 'running') { color = 'success'; }