From 459f114571917e8ff30a1c3732733410c900973d Mon Sep 17 00:00:00 2001 From: John Chilton Date: Mon, 9 Dec 2024 09:39:40 -0500 Subject: [PATCH] Fix bug in attribute handler... --- 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 f835c6859d09..791ee6899b2f 100644 --- a/client/src/components/Workflow/Editor/Index.vue +++ b/client/src/components/Workflow/Editor/Index.vue @@ -307,7 +307,7 @@ export default { ensureParametersSet(); stateStore.activeNodeId = null; activityBar.value?.setActiveSideBar("workflow-editor-attributes"); - if (args.highlight) { + if (args && args.highlight) { this.highlightAttribute = args.highlight; } }