Skip to content

Commit

Permalink
pkp/pkp-lib#5974 Fix TinyMCE mount error when using locale with @ cha…
Browse files Browse the repository at this point in the history
…racter
  • Loading branch information
NateWr committed Jun 9, 2020
1 parent 8b19c31 commit e3685f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Form/fields/FieldBase.vue
Expand Up @@ -235,7 +235,7 @@ export default {
compileId: function(type) {
let parts = [this.formId, this.name, type];
if (this.isMultilingual) {
parts.push(this.localeKey);
parts.push(this.localeKey.replace('@', '_'));
}
return parts.join('-');
}
Expand Down

0 comments on commit e3685f7

Please sign in to comment.