diff --git a/frontend/js/mixins/block.js b/frontend/js/mixins/block.js index c9055fb8a..c75d6f6af 100755 --- a/frontend/js/mixins/block.js +++ b/frontend/js/mixins/block.js @@ -23,10 +23,10 @@ export default { return this.name + '[' + id + ']' // output : nameOfBlock[UniqID][name] }, repeaterName: function (id) { - return this.nested_block_name + this.name.replace('[', '-').replace(']', '') + '|' + id // nameOfBlock-UniqID|name + return this.nested_block_name + this.nestedEditorName(id) }, nestedEditorName: function (id) { - return this.repeaterName(id) + return this.name.replace('[', '-').replace(']', '') + '|' + id // nameOfBlock-UniqID|name } } }