mirror of https://github.com/node-red/node-red.git
Fix duplicating array item in visual json editor
parent
1e8d695311
commit
797da3bc8e
|
|
@ -106,7 +106,7 @@
|
|||
options.push({id:"red-ui-editor-type-json-menu-duplicate", icon:"fa fa-copy", label:RED._("jsonEditor.duplicate"),onselect:function(){
|
||||
var newKey = item.key;
|
||||
if (item.parent.type === 'array') {
|
||||
newKey = parent.children.length;
|
||||
newKey = item.parent.children.length;
|
||||
} else {
|
||||
var m = /^(.*?)(-(\d+))?$/.exec(newKey);
|
||||
var usedKeys = {};
|
||||
|
|
|
|||
Loading…
Reference in New Issue