feat: imprint

This commit is contained in:
2026-04-27 17:06:55 +02:00
parent 026af41c4d
commit 4ada33b011
3 changed files with 16 additions and 19 deletions
+6 -6
View File
@@ -35,11 +35,11 @@ export class ImprintComponent implements OnInit {
private normalizeText(value: string): string {
return value
.replaceAll('ß', 'ß')
.replaceAll('ö', 'ö')
.replaceAll('Ä', 'Ä')
.replaceAll('ä', 'ä')
.replaceAll('Ü', 'Ü')
.replaceAll('ü', 'ü');
.replaceAll('ß', 'ß')
.replaceAll('ö', 'ö')
.replaceAll('Ä', 'Ä')
.replaceAll('ä', 'ä')
.replaceAll('Ü', 'Ü')
.replaceAll('ü', 'ü');
}
}