Skip to content

Commit

Permalink
Merge pull request #96 from NateWr/i5974_tinymce_cyrillic
Browse files Browse the repository at this point in the history
pkp/pkp-lib#5974 Fix TinyMCE mount error when using locale with @ cha…
  • Loading branch information
NateWr committed Jun 9, 2020
2 parents 8b19c31 + e3685f7 commit b4ca9ec
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 b4ca9ec

Please sign in to comment.