Skip to content

Commit

Permalink
Set background for StatusBar with status "Interrupted"
Browse files Browse the repository at this point in the history
  • Loading branch information
swaterkamp committed Jun 11, 2018
1 parent 29cbdc3 commit bc86040
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ng/src/web/components/bar/statusbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ const StatusBar = ({status = 'Unknown', progress = '0'}) => {
}

let background;
if (st === 'stopped' || st.includes('requested')) {
if (st === 'stopped' || st.includes('requested') || st === 'interrupted') {
background = 'warn';
}
else if (st.includes('error')) {
Expand Down

0 comments on commit bc86040

Please sign in to comment.