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.
1 parent 4412186 commit 2cb6aedCopy full SHA for 2cb6aed
site/src/pages/TemplateVersionEditorPage/TemplateVersionStatusBadge.tsx
@@ -37,25 +37,25 @@ export const getStatus = (
37
switch (version.job.status) {
38
case "running":
39
return {
40
- type: "info",
+ type: "active",
41
text: "Running",
42
icon: <PillSpinner />,
43
};
44
case "pending":
45
46
47
text: getPendingStatusLabel(version.job),
48
icon: <QueuedIcon />,
49
50
case "canceling":
51
52
- type: "warning",
+ type: "inactive",
53
text: "Canceling",
54
55
56
case "canceled":
57
58
59
text: "Canceled",
60
icon: <ErrorIcon />,
61
0 commit comments