Skip to content

Commit

Permalink
Default colour to prevent HDS error
Browse files Browse the repository at this point in the history
  • Loading branch information
philrenaud committed Oct 7, 2024
1 parent 1241e4e commit 28c062a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .changelog/24133.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:improvement
ui: Indicates prestart/poststart tasks by running/failed/pending status
```
2 changes: 1 addition & 1 deletion ui/app/components/lifecycle-chart-row.js
Original file line number Diff line number Diff line change
Expand Up @@ -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';
}
Expand Down

0 comments on commit 28c062a

Please sign in to comment.