We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 09c3dee + 3366e8d commit 49bf592Copy full SHA for 49bf592
packages/forklift-console-plugin/src/components/status/StatusIcon.tsx
@@ -6,6 +6,8 @@ import {
6
ExclamationCircleIcon,
7
ExclamationTriangleIcon,
8
InfoCircleIcon,
9
+ MinusCircleIcon,
10
+ PlusCircleIcon,
11
} from '@patternfly/react-icons';
12
import { BanIcon } from '@patternfly/react-icons/dist/esm/icons/ban-icon';
13
import { ClipboardListIcon } from '@patternfly/react-icons/dist/esm/icons/clipboard-list-icon';
@@ -96,6 +98,12 @@ export const StatusIcon: React.FC<{ phase: string }> = ({ phase }) => {
96
98
case 'PipelineNotStarted':
97
99
return <NotStartedIcon />;
100
101
+ case 'True':
102
+ return <PlusCircleIcon />;
103
+
104
+ case 'False':
105
+ return <MinusCircleIcon />;
106
107
default:
108
return <>-</>;
109
}
0 commit comments