Skip to content

Commit

Permalink
fix(editor): Flag issues only on workflow activation (#6127)
Browse files Browse the repository at this point in the history
🐛 Flag issues only on workflow activation
  • Loading branch information
ivov authored and netroy committed May 15, 2023
1 parent 2926fb5 commit 8b9831a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/editor-ui/src/mixins/workflowActivate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit 8b9831a

Please sign in to comment.