Skip to content

Commit

Permalink
Merge pull request #18396 from itisAliRH/fix-workflow-editor-tags
Browse files Browse the repository at this point in the history
[24.1] Fix workflow tags initialisation in workflow editor
  • Loading branch information
ElectronicBlueberry authored Jun 18, 2024
2 parents ed2369f + 325091b commit 2b3a825
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions client/src/components/Workflow/Editor/Index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -355,6 +355,15 @@ export default {
}
const tags = ref([]);
watch(
() => props.workflowTags,
(newTags) => {
tags.value = [...newTags];
},
{ immediate: true }
);
const setTagsHandler = new SetValueActionHandler(
undoRedoStore,
(value) => (tags.value = structuredClone(value)),
Expand Down

0 comments on commit 2b3a825

Please sign in to comment.