Skip to content

Commit

Permalink
Replace colour hexes corresponding to subdued to default
Browse files Browse the repository at this point in the history
  • Loading branch information
deadlycoconuts committed Sep 23, 2022
1 parent 620adc1 commit 95faa74
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions ui/src/services/job/JobStatus.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ export const JobStatus = Enum({
}),
TERMINATED: EnumValue("terminated", {
label: "Terminated",
color: "#6A717D",
color: "default",
}),
COMPLETED: EnumValue("completed", {
label: "Completed",
color: "#6A717D",
color: "default",
iconType: "check",
}),
FAILED: EnumValue("failed", {
Expand Down
2 changes: 1 addition & 1 deletion ui/src/services/status/Status.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ export const Status = Enum({
}),
UNDEPLOYED: EnumValue("undeployed", {
label: "Not Deployed",
color: "#6A717D",
color: "default",
}),
});

0 comments on commit 95faa74

Please sign in to comment.