mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +00:00
fix: Hide trigger tooltip for nodes with static test output (#4970)
This commit is contained in:
@@ -409,6 +409,7 @@ export default mixins(
|
|||||||
!!this.node &&
|
!!this.node &&
|
||||||
this.isTriggerNode &&
|
this.isTriggerNode &&
|
||||||
!this.isPollingTypeNode &&
|
!this.isPollingTypeNode &&
|
||||||
|
!this.hasPinData &&
|
||||||
!this.isNodeDisabled &&
|
!this.isNodeDisabled &&
|
||||||
this.workflowRunning &&
|
this.workflowRunning &&
|
||||||
this.workflowDataItems === 0 &&
|
this.workflowDataItems === 0 &&
|
||||||
|
|||||||
@@ -9,6 +9,7 @@ export class ExecuteWorkflowTrigger implements INodeType {
|
|||||||
group: ['trigger'],
|
group: ['trigger'],
|
||||||
version: 1,
|
version: 1,
|
||||||
description: 'Runs the flow when called by the Execute Workflow node from a different workflow',
|
description: 'Runs the flow when called by the Execute Workflow node from a different workflow',
|
||||||
|
eventTriggerDescription: '',
|
||||||
maxNodes: 1,
|
maxNodes: 1,
|
||||||
defaults: {
|
defaults: {
|
||||||
name: 'Execute Workflow Trigger',
|
name: 'Execute Workflow Trigger',
|
||||||
|
|||||||
@@ -9,6 +9,7 @@ export class ManualTrigger implements INodeType {
|
|||||||
group: ['trigger'],
|
group: ['trigger'],
|
||||||
version: 1,
|
version: 1,
|
||||||
description: 'Runs the flow on clicking a button in n8n',
|
description: 'Runs the flow on clicking a button in n8n',
|
||||||
|
eventTriggerDescription: '',
|
||||||
maxNodes: 1,
|
maxNodes: 1,
|
||||||
defaults: {
|
defaults: {
|
||||||
name: 'When clicking "Execute Workflow"',
|
name: 'When clicking "Execute Workflow"',
|
||||||
|
|||||||
Reference in New Issue
Block a user