Skip to content

Commit

Permalink
Merge pull request quarkusio#35644 from scandinave/allow-caps-letter-…
Browse files Browse the repository at this point in the history
…url-keycloak-provider-test

Allow using a servicePath with capital letters when testing with the OIDC provider test Service
  • Loading branch information
sberyozkin authored Aug 31, 2023
2 parents 5b0fb1a + e4113aa commit 176c5bc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -780,7 +780,7 @@ export class QwcOidcProvider extends QwcHotReloadElement {
<vaadin-text-field class="frm-field"
value="/"
@value-changed="${e => {
this._servicePath = (e.detail?.value || '').trim().toLowerCase();
this._servicePath = (e.detail?.value || '').trim();
if (!this._servicePath.startsWith('/')) {
this._servicePath = '/' + this._servicePath;
}
Expand Down

0 comments on commit 176c5bc

Please sign in to comment.