Unverified Commit d3d06d4e authored by Alireza Heidari's avatar Alireza Heidari Committed by GitHub
Browse files

🛠️: spread `props.workflowTags` in `Workflow/Editor/Index`

parent 55439e45
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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)),