mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50: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;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (isCurrentWorkflow && nodesIssuesExist) {
|
if (isCurrentWorkflow && nodesIssuesExist && newActiveState === true) {
|
||||||
this.$showMessage({
|
this.$showMessage({
|
||||||
title: this.$locale.baseText(
|
title: this.$locale.baseText(
|
||||||
'workflowActivator.showMessage.activeChangedNodesIssuesExistTrue.title',
|
'workflowActivator.showMessage.activeChangedNodesIssuesExistTrue.title',
|
||||||
|
|
Loading…
Reference in a new issue