Skip to content

Commit

Permalink
🛠️: spread props.workflowTags in Workflow/Editor/Index
Browse files Browse the repository at this point in the history
Co-authored-by: Marius van den Beek <m.vandenbeek@gmail.com>
  • Loading branch information
itisAliRH and mvdbeek committed Jun 18, 2024
1 parent 822a216 commit aabfeb8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/components/Workflow/Editor/Index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ export default {
}
}
const tags = ref(props.workflowTags);
const tags = ref([...props.workflowTags]);
const setTagsHandler = new SetValueActionHandler(
undoRedoStore,
(value) => (tags.value = structuredClone(value)),
Expand Down

0 comments on commit aabfeb8

Please sign in to comment.