mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-23 10:32:17 -08:00
fix(editor): Flag issues only on workflow activation (#6127)
🐛 Flag issues only on workflow activation
This commit is contained in:
parent
0033f831fc
commit
1b49c17f38
|
@ -69,7 +69,7 @@ export const workflowActivate = mixins(externalHooks, workflowHelpers, showMessa
|
|||
return;
|
||||
}
|
||||
|
||||
if (isCurrentWorkflow && nodesIssuesExist) {
|
||||
if (isCurrentWorkflow && nodesIssuesExist && newActiveState === true) {
|
||||
this.$showMessage({
|
||||
title: this.$locale.baseText(
|
||||
'workflowActivator.showMessage.activeChangedNodesIssuesExistTrue.title',
|
||||
|
|
Loading…
Reference in a new issue