diff --git a/public/js/app.js b/public/js/app.js index 3481ae6..a127d94 100755 --- a/public/js/app.js +++ b/public/js/app.js @@ -6028,7 +6028,7 @@ class Level { { this.words = []; for (let i = 0, n = words.length; i < n; i++) { - this.words.push(words[i].toUpperCase()); + this.words.push(words[i].replace(/ß/g, "ẞ").toUpperCase()); } } diff --git a/src/module/Application/pwa/js/wordrotator/Level/Level.js b/src/module/Application/pwa/js/wordrotator/Level/Level.js index 29c8b89..ec83c86 100755 --- a/src/module/Application/pwa/js/wordrotator/Level/Level.js +++ b/src/module/Application/pwa/js/wordrotator/Level/Level.js @@ -82,7 +82,7 @@ export class Level { { this.words = []; for (let i = 0, n = words.length; i < n; i++) { - this.words.push(words[i].toUpperCase()); + this.words.push(words[i].replace(/ß/g, "ẞ").toUpperCase()); } }