diff --git a/extensions/oidc/deployment/src/main/resources/dev-ui/qwc-oidc-provider.js b/extensions/oidc/deployment/src/main/resources/dev-ui/qwc-oidc-provider.js
index 6ecb76ad16901..0f3ab5f10ea74 100644
--- a/extensions/oidc/deployment/src/main/resources/dev-ui/qwc-oidc-provider.js
+++ b/extensions/oidc/deployment/src/main/resources/dev-ui/qwc-oidc-provider.js
@@ -396,7 +396,7 @@ export class QwcOidcProvider extends QwcHotReloadElement {
{
- this._passwordGrantUsername = (e.detail?.value || '').trim().toLowerCase();
+ this._passwordGrantUsername = (e.detail?.value || '').trim();
}}">
@@ -405,7 +405,7 @@ export class QwcOidcProvider extends QwcHotReloadElement {
{
- this._passwordGrantPwd = (e.detail?.value || '').trim().toLowerCase();
+ this._passwordGrantPwd = (e.detail?.value || '').trim();
}}">
@@ -595,7 +595,7 @@ export class QwcOidcProvider extends QwcHotReloadElement {
{
- this._selectedClientSecret = (e.detail?.value || '').trim().toLowerCase();
+ this._selectedClientSecret = (e.detail?.value || '').trim();
}}"
value="${propertiesState.keycloakRealms?.length === 1 ? (propertiesState.clientSecret ?? '') : ''}">
@@ -619,7 +619,7 @@ export class QwcOidcProvider extends QwcHotReloadElement {
{
- this._selectedClientId = (e.detail?.value || '').trim().toLowerCase();
+ this._selectedClientId = (e.detail?.value || '').trim();
}}"
value="${propertiesState.keycloakRealms?.length === 1 ? (propertiesState.clientId ?? '') : ''}">