Skip to content

Commit

Permalink
Merge pull request #479 from DrDroidLab/@bugfix/running-state-color-c…
Browse files Browse the repository at this point in the history
…hanged

running state color changed from blue->violet
  • Loading branch information
dimittal authored Sep 6, 2024
2 parents f07dc1c + 3ba38e3 commit 140d7b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/src/utils/common/handleStatus.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export const handleStatus = (status: string) => {

case ExecutionStatus.WORKFLOW_RUNNING:
case ExecutionStatus.RUNNING:
className += "bg-blue-500 text-white";
className += "bg-violet-500 text-white";
break;

case ExecutionStatus.WORKFLOW_FINISHED:
Expand Down

0 comments on commit 140d7b1

Please sign in to comment.