mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-28 05:59:42 -08:00
fix error state while executing
This commit is contained in:
parent
6a82603654
commit
1b8ab5de58
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue