Fix workflow edges color (#9917)

Fixes
https://discord.com/channels/1130383047699738754/1333831150535442462
This commit is contained in:
Baptiste Devessier
2025-01-29 18:04:32 +01:00
committed by GitHub
parent ce8c6c4bac
commit 03f3ccd060
4 changed files with 4 additions and 5 deletions

View File

@ -1,12 +1,8 @@
import { EDGE_ROUNDED_ARROW_MARKER_ID } from '@/workflow/workflow-diagram/constants/EdgeRoundedArrowMarkerId';
import { WorkflowDiagramEdge } from '@/workflow/workflow-diagram/types/WorkflowDiagram';
import { THEME_COMMON } from 'twenty-ui';
export const WORKFLOW_VISUALIZER_EDGE_DEFAULT_CONFIGURATION = {
markerEnd: EDGE_ROUNDED_ARROW_MARKER_ID,
style: {
stroke: THEME_COMMON.grayScale.gray25,
},
deletable: false,
selectable: false,
} satisfies Partial<WorkflowDiagramEdge>;