diff --git a/packages/frontend/@n8n/i18n/src/locales/en.json b/packages/frontend/@n8n/i18n/src/locales/en.json index 2b2d745249..44d0d5fc29 100644 --- a/packages/frontend/@n8n/i18n/src/locales/en.json +++ b/packages/frontend/@n8n/i18n/src/locales/en.json @@ -1161,6 +1161,8 @@ "ndv.input.noOutputData.hint.tooltip": "From the earliest node which is unexecuted, or is executed but has since been changed", "ndv.input.noOutputData.schemaPreviewHint": "switch to {schema} to use the schema preview", "ndv.input.noOutputData.or": "or", + "ndv.input.noOutputData.embeddedNdv.link": "Execute previous nodes", + "ndv.input.noOutputData.embeddedNdv.description": "{link} to use their data here", "ndv.input.executingPrevious": "Executing previous nodes...", "ndv.input.notConnected.title": "Wire me up", "ndv.input.notConnected.v2.title": "No input connected", diff --git a/packages/frontend/editor-ui/src/components/ExpressionParameterInput.vue b/packages/frontend/editor-ui/src/components/ExpressionParameterInput.vue index 41d39d8044..7eddb7bbba 100644 --- a/packages/frontend/editor-ui/src/components/ExpressionParameterInput.vue +++ b/packages/frontend/editor-ui/src/components/ExpressionParameterInput.vue @@ -1,5 +1,5 @@ diff --git a/packages/frontend/editor-ui/src/components/NodeSettings.vue b/packages/frontend/editor-ui/src/components/NodeSettings.vue index 02413fce08..a9800a1607 100644 --- a/packages/frontend/editor-ui/src/components/NodeSettings.vue +++ b/packages/frontend/editor-ui/src/components/NodeSettings.vue @@ -73,6 +73,8 @@ const props = withDefaults( activeNode?: INodeUi; isEmbeddedInCanvas?: boolean; subTitle?: string; + extraTabsClassName?: string; + extraParameterWrapperClassName?: string; }>(), { inputSize: 0, @@ -94,6 +96,7 @@ const emit = defineEmits<{ activate: []; execute: []; captureWheelBody: [WheelEvent]; + dblclickHeader: [MouseEvent]; }>(); const slots = defineSlots<{ actions?: {} }>(); @@ -596,11 +599,13 @@ function handleSelectAction(params: INodeParameters) { :node-type="nodeType" :push-ref="pushRef" :sub-title="subTitle" + :extra-tabs-class-name="extraTabsClassName" :include-action="parametersByTab.action.length > 0" :include-credential="isDisplayingCredentials" :has-credential-issue="!areAllCredentialsSet" @name-changed="nameChanged" @tab-changed="onTabSelect" + @dblclick-title="emit('dblclickHeader', $event)" >