We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a5557f commit 6bb39cbCopy full SHA for 6bb39cb
frontend/js/mixins/block.js
@@ -23,10 +23,10 @@ export default {
23
return this.name + '[' + id + ']' // output : nameOfBlock[UniqID][name]
24
},
25
repeaterName: function (id) {
26
- return this.nested_block_name + this.name.replace('[', '-').replace(']', '') + '|' + id // nameOfBlock-UniqID|name
+ return this.nested_block_name + this.nestedEditorName(id)
27
28
nestedEditorName: function (id) {
29
- return this.repeaterName(id)
+ return this.name.replace('[', '-').replace(']', '') + '|' + id // nameOfBlock-UniqID|name
30
}
31
32
0 commit comments