From aabfeb86e24864774429b07fcedc7fcc486fcb30 Mon Sep 17 00:00:00 2001 From: Alireza Heidari Date: Fri, 14 Jun 2024 11:44:34 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=9B=A0=EF=B8=8F:=20spread=20`props.workfl?= =?UTF-8?q?owTags`=20in=20`Workflow/Editor/Index`?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Marius van den Beek --- client/src/components/Workflow/Editor/Index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/components/Workflow/Editor/Index.vue b/client/src/components/Workflow/Editor/Index.vue index e0926305b6f6..05bf5162cf74 100644 --- a/client/src/components/Workflow/Editor/Index.vue +++ b/client/src/components/Workflow/Editor/Index.vue @@ -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)),