Skip to content

Commit 1f28278

Browse files
committed
add fallback color
1 parent f63ea9c commit 1f28278

File tree

1 file changed

+1
-1
lines changed
  • apps/sim/app/workspace/[workspaceId]/logs/components/dashboard/components/workflows-list

1 file changed

+1
-1
lines changed

apps/sim/app/workspace/[workspaceId]/logs/components/dashboard/components/workflows-list/workflows-list.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ export function WorkflowsList({
6868
const isDeletedWorkflow = workflow.workflowName === DELETED_WORKFLOW_LABEL
6969
const workflowColor = isDeletedWorkflow
7070
? DELETED_WORKFLOW_COLOR
71-
: workflows[workflow.workflowId]?.color
71+
: workflows[workflow.workflowId]?.color || '#64748b'
7272
const canToggle = !isDeletedWorkflow
7373

7474
return (

0 commit comments

Comments
 (0)