diff --git a/src/frontend/src/stores/flowStore.ts b/src/frontend/src/stores/flowStore.ts index eb1dc22eb..c5b6e290e 100644 --- a/src/frontend/src/stores/flowStore.ts +++ b/src/frontend/src/stores/flowStore.ts @@ -82,6 +82,10 @@ const useFlowStore = create((set, get) => ({ isBuilding: false, stopBuilding: () => { get().buildController.abort(); + get().updateEdgesRunningByNodes( + get().nodes.map((n) => n.id), + false, + ); set({ isBuilding: false }); }, isPending: true,