Unverified Commit 2b3a8256 authored by Laila Los's avatar Laila Los Committed by GitHub
Browse files

Merge pull request #18396 from itisAliRH/fix-workflow-editor-tags

[24.1] Fix workflow tags initialisation in workflow editor
parents ed2369f9 325091bb
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
@@ -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)),