From 1f13c3672b078c6dae1f81217131471a722f1886 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Milo=C5=A1=20Paunovi=C4=87?= Date: Tue, 23 Jul 2024 19:01:49 +0200 Subject: [PATCH] fix(ui): passing valid attributes to method which handles edit event in low code editor (#4409) --- ui/src/components/inputs/EditorView.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/components/inputs/EditorView.vue b/ui/src/components/inputs/EditorView.vue index de410daf45..048af8f51c 100644 --- a/ui/src/components/inputs/EditorView.vue +++ b/ui/src/components/inputs/EditorView.vue @@ -1064,7 +1064,7 @@ v-if="flowGraph" ref="lowCodeEditorRef" @follow="forwardEvent('follow', $event)" - @on-edit="onEdit" + @on-edit="(e) => onEdit(e, true)" @loading="loadingState" @expand-subflow="onExpandSubflow" @swapped-task="onSwappedTask"