summaryrefslogtreecommitdiff
path: root/web/src/containers/build/Console.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'web/src/containers/build/Console.jsx')
-rw-r--r--web/src/containers/build/Console.jsx4
1 files changed, 3 insertions, 1 deletions
diff --git a/web/src/containers/build/Console.jsx b/web/src/containers/build/Console.jsx
index 94c5f6f07..74f1274d7 100644
--- a/web/src/containers/build/Console.jsx
+++ b/web/src/containers/build/Console.jsx
@@ -289,7 +289,9 @@ class HostTask extends React.Component {
let item = null
if (interestingKeys) {
- item = <DataListItem isExpanded={this.state.expanded}>
+ item = <DataListItem
+ isExpanded={this.state.expanded}
+ className={this.state.failed ? 'zuul-console-task-failed' : ''}>
<DataListItemRow>
<DataListToggle
onClick={() => {this.setState({expanded: !this.state.expanded})}}