diff --git a/packages/editor-ui/src/components/NodeDetailsView.vue b/packages/editor-ui/src/components/NodeDetailsView.vue index fe7d3a960ed9d..572445906f5d3 100644 --- a/packages/editor-ui/src/components/NodeDetailsView.vue +++ b/packages/editor-ui/src/components/NodeDetailsView.vue @@ -114,6 +114,7 @@ :read-only="readOnly" :block-u-i="blockUi && showTriggerPanel" :executable="!readOnly" + :input-size="inputSize" @value-changed="valueChanged" @execute="onNodeExecute" @stop-execution="onStopExecution" @@ -313,6 +314,8 @@ export default defineComponent({ return null; }); + const inputSize = computed(() => ndvStore.ndvInputDataWithPinnedData.length); + const isTriggerNode = computed( () => !!activeNodeType.value && @@ -848,6 +851,7 @@ export default defineComponent({ inputRun, linked, inputNodeName, + inputSize, hasForeignCredential, outputRun, isOutputPaneActive, diff --git a/packages/editor-ui/src/components/NodeExecuteButton.vue b/packages/editor-ui/src/components/NodeExecuteButton.vue index 917a46b207f9b..234309fca4d4b 100644 --- a/packages/editor-ui/src/components/NodeExecuteButton.vue +++ b/packages/editor-ui/src/components/NodeExecuteButton.vue @@ -1,20 +1,25 @@