From 1b8ab5de581bbac0db45dff9783a13085580b30a Mon Sep 17 00:00:00 2001 From: Mutasem Date: Tue, 2 Nov 2021 15:45:55 +0100 Subject: [PATCH] fix error state while executing --- packages/editor-ui/src/components/Node.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/editor-ui/src/components/Node.vue b/packages/editor-ui/src/components/Node.vue index b7fa8e614a..843a7c66ee 100644 --- a/packages/editor-ui/src/components/Node.vue +++ b/packages/editor-ui/src/components/Node.vue @@ -170,7 +170,7 @@ export default mixins(externalHooks, nodeBase, nodeHelpers, workflowHelpers).ext if (this.data.disabled) { borderColor = getStyleTokenValue('--color-foreground-base'); } - else if (this.hasIssues && this.workflowDataItems) { + else if (this.hasIssues && this.workflowDataItems && !this.isExecuting) { borderColor = getStyleTokenValue('--color-danger'); } else if (this.workflowDataItems && !this.isExecuting) {