We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5754155 commit a7b8db8Copy full SHA for a7b8db8
1 file changed
src/entities/run/ui/RunStatusBadge/utils/getRunStatusColor/index.ts
@@ -5,8 +5,9 @@ import { BadgeProps } from 'antd';
5
export const getRunStatusColor = (status: RunStatus): BadgeProps['status'] => {
6
switch (status) {
7
case RunStatus.CREATED:
8
- case RunStatus.STARTED:
9
return 'default';
+ case RunStatus.STARTED:
10
+ return 'processing';
11
case RunStatus.FAILED:
12
return 'error';
13
case RunStatus.SEND_STOP_SIGNAL:
0 commit comments