From 4d7f5a0a4631cf418a7b19dc3e511f21ab116c38 Mon Sep 17 00:00:00 2001 From: Mutasem Date: Wed, 3 Nov 2021 09:32:24 +0100 Subject: [PATCH] always show border --- 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 843a7c66ee..db9195e7ee 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 && !this.isExecuting) { + else if (this.hasIssues && !this.isExecuting) { borderColor = getStyleTokenValue('--color-danger'); } else if (this.workflowDataItems && !this.isExecuting) {