🐛 hide tooltip after trigger node is run (#2483)

* hide tooltip after trigger node is run

* remove executing
This commit is contained in:
Mutasem Aldmour 2021-11-26 12:35:34 +01:00 committed by GitHub
parent 464775ae3b
commit 1500afe689
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -243,7 +243,7 @@ export default mixins(externalHooks, nodeBase, nodeHelpers, workflowHelpers).ext
return !!(this.nodeType && this.nodeType.outputs.length > 2); return !!(this.nodeType && this.nodeType.outputs.length > 2);
}, },
shouldShowTriggerTooltip () : boolean { shouldShowTriggerTooltip () : boolean {
return !!this.node && this.workflowRunning && this.isTriggerNode && this.isSingleActiveTriggerNode && !this.isTriggerNodeTooltipEmpty && !this.isNodeDisabled && !this.hasIssues && !this.dragging; return !!this.node && this.workflowRunning && this.workflowDataItems === 0 && this.isTriggerNode && this.isSingleActiveTriggerNode && !this.isTriggerNodeTooltipEmpty && !this.isNodeDisabled && !this.hasIssues && !this.dragging;
}, },
}, },
watch: { watch: {