1
0
mirror of https://github.com/node-red/node-red.git synced 2023-10-10 13:36:53 +02:00

Fix import notification message when importing config nodes

This commit is contained in:
Nick O'Leary 2021-10-25 15:08:30 +01:00
parent 073f0c2a20
commit bf0ea89969
No known key found for this signature in database
GPG Key ID: 4F2157149161A6C9

View File

@ -4957,7 +4957,7 @@ RED.view = (function() {
counts.push(RED._("clipboard.group",{count:newGroupCount})); counts.push(RED._("clipboard.group",{count:newGroupCount}));
} }
if (newConfigNodeCount > 0) { if (newConfigNodeCount > 0) {
counts.push(RED._("clipboard.configNode",{count:newNodeCount})); counts.push(RED._("clipboard.configNode",{count:newConfigNodeCount}));
} }
if (new_subflows.length > 0) { if (new_subflows.length > 0) {
counts.push(RED._("clipboard.subflow",{count:new_subflows.length})); counts.push(RED._("clipboard.subflow",{count:new_subflows.length}));