Skip to content

Commit

Permalink
Merge pull request #3224 from node-red/import-msg-fix
Browse files Browse the repository at this point in the history
Fix import notification message when importing config nodes
  • Loading branch information
knolleary committed Oct 25, 2021
2 parents 073f0c2 + bf0ea89 commit 2d4ca7c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -4957,7 +4957,7 @@ RED.view = (function() {
counts.push(RED._("clipboard.group",{count:newGroupCount}));
}
if (newConfigNodeCount > 0) {
counts.push(RED._("clipboard.configNode",{count:newNodeCount}));
counts.push(RED._("clipboard.configNode",{count:newConfigNodeCount}));
}
if (new_subflows.length > 0) {
counts.push(RED._("clipboard.subflow",{count:new_subflows.length}));
Expand Down

0 comments on commit 2d4ca7c

Please sign in to comment.