Skip to content

Commit

Permalink
Make sure step removal also resets mapOver state
Browse files Browse the repository at this point in the history
Fixes #17906
  • Loading branch information
mvdbeek committed Apr 5, 2024
1 parent f3377c4 commit 0bb2925
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions client/src/stores/workflowStepStore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -340,6 +340,7 @@ export const useWorkflowStepStore = defineScopedStore("workflowStepStore", (work

del(steps.value, stepId.toString());
del(stepExtraInputs.value, stepId);
del(stepMapOver.value, stepId.toString());
}

return {
Expand Down

0 comments on commit 0bb2925

Please sign in to comment.