From b14ad784cbfbb66d18d9054928409fee61226db1 Mon Sep 17 00:00:00 2001 From: Charlie Kolb Date: Mon, 21 Jul 2025 11:48:46 +0200 Subject: [PATCH] feat(editor): Show execution hint message in FocusPanel (no-changelog) (#17442) --- .../frontend/@n8n/i18n/src/locales/en.json | 1 + .../editor-ui/src/components/FocusPanel.vue | 39 ++++++++++++++++++- .../editor-ui/src/components/OutputPanel.vue | 32 ++------------- .../src/composables/useExecutionData.ts | 38 ++++++++++++++++++ 4 files changed, 79 insertions(+), 31 deletions(-) create mode 100644 packages/frontend/editor-ui/src/composables/useExecutionData.ts diff --git a/packages/frontend/@n8n/i18n/src/locales/en.json b/packages/frontend/@n8n/i18n/src/locales/en.json index 77025fe58c..be9d30edd2 100644 --- a/packages/frontend/@n8n/i18n/src/locales/en.json +++ b/packages/frontend/@n8n/i18n/src/locales/en.json @@ -1502,6 +1502,7 @@ "nodeView.couldntImportWorkflow": "Could not import workflow", "nodeView.couldntLoadWorkflow.invalidWorkflowObject": "Invalid workflow object", "nodeView.deletesTheCurrentExecutionData": "Deletes the current execution data", + "nodeView.focusPanel.noExecutionData": "Execute previous node for autocomplete", "nodeView.focusPanel.noParameters.title": "Show a node parameter here, to iterate easily", "nodeView.focusPanel.noParameters.subtitle": "For example, keep your prompt always visible so you can run the workflow while tweaking it", "nodeView.focusPanel.missingParameter": "This parameter is no longer visible on the node. A related parameter was likely changed, removing this one.", diff --git a/packages/frontend/editor-ui/src/components/FocusPanel.vue b/packages/frontend/editor-ui/src/components/FocusPanel.vue index 6f47f41fb3..8836fd09fb 100644 --- a/packages/frontend/editor-ui/src/components/FocusPanel.vue +++ b/packages/frontend/editor-ui/src/components/FocusPanel.vue @@ -1,7 +1,7 @@