diff --git a/web/src/containers/build/Console.jsx b/web/src/containers/build/Console.jsx index d8810170ee..a84b4a01dd 100644 --- a/web/src/containers/build/Console.jsx +++ b/web/src/containers/build/Console.jsx @@ -24,6 +24,11 @@ import { Col, Modal, } from 'patternfly-react' +import { + ContainerNodeIcon, + InfoCircleIcon, + SearchPlusIcon, +} from '@patternfly/react-icons' import { hasInterestingKeys, @@ -181,30 +186,42 @@ class HostTask extends React.Component { if (this.state.failed) { ai.push( + + + FAILED ) } else if (this.state.changed) { ai.push( + + + CHANGED ) } else if (this.state.skipped) { ai.push( + + + SKIPPED ) } else if (this.state.ok) { ai.push( + + + OK ) } ai.push( - - {hostname} + + {hostname} ) @@ -304,8 +321,9 @@ class PlayBook extends React.Component { ai.push( - Trusted + + Trusted ) } diff --git a/web/src/index.css b/web/src/index.css index a19e1a26a4..61a1c22fa9 100644 --- a/web/src/index.css +++ b/web/src/index.css @@ -276,6 +276,12 @@ pre.version { .zuul-console .additionalinfo-icon { cursor: default; + margin-right: 8px; +} +.zuul-console .task-details-icon +{ + cursor: pointer; + margin-right: 8px; } .zuul-console-modal-header-link {