Skip to content

Commit

Permalink
chore(ui): last cleanup - WF-148
Browse files Browse the repository at this point in the history
  • Loading branch information
madeindjs committed Dec 20, 2024
1 parent a1c78a3 commit 7b7e23e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ui/src/components/workflows/WorkflowsWorkflow.vue
Original file line number Diff line number Diff line change
Expand Up @@ -151,12 +151,12 @@ const nodeContainerEl: Ref<HTMLElement | null> = ref(null);
const wf = inject(injectionKeys.core);
const wfbm = inject(injectionKeys.builderManager);
const arrows: Ref<WorkflowArrowData[]> = ref([]);
const renderOffset = ref({ x: 0, y: 0 });
const renderOffset = shallowRef({ x: 0, y: 0 });
const isRunning = ref(false);
const selectedArrow = ref(null);
const zoomLevel = ref(ZOOM_SETTINGS.initialLevel);
const arrowRefresherObserver = new MutationObserver(refreshArrows);
const temporaryNodeCoordinates = ref<
const temporaryNodeCoordinates = shallowRef<
Record<Component["id"], { x: number; y: number }>
>({});
Expand Down

0 comments on commit 7b7e23e

Please sign in to comment.