feat(editor): Remove edge execution animation on new canvas (#11446)

This commit is contained in:
Alex Grozav
2024-10-29 13:39:45 +02:00
committed by GitHub
parent 4e3681b905
commit a701d87f5b
2 changed files with 0 additions and 4 deletions

View File

@@ -743,7 +743,6 @@ describe('useCanvasMapping', () => {
target,
targetHandle,
type: 'canvas-edge',
animated: false,
},
]);
});
@@ -832,7 +831,6 @@ describe('useCanvasMapping', () => {
target: targetA,
targetHandle: targetHandleA,
type: 'canvas-edge',
animated: false,
},
{
data: {
@@ -855,7 +853,6 @@ describe('useCanvasMapping', () => {
targetHandle: targetHandleB,
type: 'canvas-edge',
markerEnd: MarkerType.ArrowClosed,
animated: false,
},
]);
});

View File

@@ -507,7 +507,6 @@ export function useCanvasMapping({
data,
type,
label,
animated: data.status === 'running',
markerEnd: MarkerType.ArrowClosed,
};
},