In my Angular application, capitalized umlauts are automatically changed to the related vowels by Edge and Chrome. Example: In the following image, I typed "ÄÜÖäüö": Edge texte input example
In the data the capitalized umlauts are passed correctly - they are just displayed incorrectly in the text input field. I don't want this behavior.
What I tried so far, but didn't trigger any effect:
autocomplete="off"
in the input fieldspellcheck="false"
in the input field<tag autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" />
in the index.html- different language settings in the browsers.
- different language settings in the operating system (Windows 11)