fix: Hide trigger tooltip for nodes with static test output (#4970)

This commit is contained in:
Mutasem Aldmour
2022-12-20 09:39:09 +01:00
committed by GitHub
parent 60b14116f0
commit 5b11dc3ff9
3 changed files with 3 additions and 0 deletions

View File

@@ -409,6 +409,7 @@ export default mixins(
!!this.node &&
this.isTriggerNode &&
!this.isPollingTypeNode &&
!this.hasPinData &&
!this.isNodeDisabled &&
this.workflowRunning &&
this.workflowDataItems === 0 &&

View File

@@ -9,6 +9,7 @@ export class ExecuteWorkflowTrigger implements INodeType {
group: ['trigger'],
version: 1,
description: 'Runs the flow when called by the Execute Workflow node from a different workflow',
eventTriggerDescription: '',
maxNodes: 1,
defaults: {
name: 'Execute Workflow Trigger',

View File

@@ -9,6 +9,7 @@ export class ManualTrigger implements INodeType {
group: ['trigger'],
version: 1,
description: 'Runs the flow on clicking a button in n8n',
eventTriggerDescription: '',
maxNodes: 1,
defaults: {
name: 'When clicking "Execute Workflow"',