From 3ba38e3ccd721e442dc068000b596f8169055c7e Mon Sep 17 00:00:00 2001 From: jayeshsadhwani99 Date: Fri, 6 Sep 2024 15:46:40 +0530 Subject: [PATCH] running state color changed from blue->violet --- web/src/utils/common/handleStatus.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/utils/common/handleStatus.tsx b/web/src/utils/common/handleStatus.tsx index 18cb169d8..708d70e24 100644 --- a/web/src/utils/common/handleStatus.tsx +++ b/web/src/utils/common/handleStatus.tsx @@ -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: