diff --git a/awx/ui_next/src/components/StatusIcon/StatusIcon.jsx b/awx/ui_next/src/components/StatusIcon/StatusIcon.jsx index c386a270e9..2565765f00 100644 --- a/awx/ui_next/src/components/StatusIcon/StatusIcon.jsx +++ b/awx/ui_next/src/components/StatusIcon/StatusIcon.jsx @@ -93,42 +93,43 @@ SkippedBottom.displayName = 'SkippedBottom'; const StatusIcon = ({ status, ...props }) => { return ( -
+
{status === 'running' && } {(status === 'new' || status === 'pending' || status === 'waiting' || status === 'never updated') && } {(status === 'failed' || status === 'error' || status === 'canceled') && ( - + )} {(status === 'successful' || status === 'ok') && ( - + )} {status === 'changed' && ( - + )} {status === 'skipped' && ( - + )} {status === 'unreachable' && ( - + )} + {status}
); };