From fe1f308edcac7523635c29744382a9a82de2308d Mon Sep 17 00:00:00 2001 From: Mutasem Aldmour Date: Thu, 7 Nov 2024 16:32:32 +0100 Subject: [PATCH] fix: add comment --- packages/editor-ui/src/composables/useExecutionHelpers.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/editor-ui/src/composables/useExecutionHelpers.ts b/packages/editor-ui/src/composables/useExecutionHelpers.ts index a68cfd85bf..ea54b60e58 100644 --- a/packages/editor-ui/src/composables/useExecutionHelpers.ts +++ b/packages/editor-ui/src/composables/useExecutionHelpers.ts @@ -73,6 +73,7 @@ export function useExecutionHelpers() { } function openExecutionInNewTab(executionId: string, workflowId?: string) { + // todo this does not work when workflowId is not set const route = router.resolve({ name: VIEWS.EXECUTION_PREVIEW, params: { name: workflowId, executionId },