Skip to content

Commit

Permalink
Converted OR label to lowercase
Browse files Browse the repository at this point in the history
  • Loading branch information
HasiniSama committed Sep 10, 2024
1 parent d36ecc8 commit be64a10
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
}
if (attributeList.size() > 0) {
String orString = AuthenticationEndpointUtil.i18n(resourceBundle, "or");
String orString = AuthenticationEndpointUtil.i18n(resourceBundle, "or").toLowerCase();
usernameLabel = String.join(", ", attributeList.subList(0, attributeList.size() - 1))
+ (attributeList.size() > 1 ? " " + orString + " " : "")
+ attributeList.get(attributeList.size() - 1);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
}
}
if (attributeList.size() > 0) {
String orString = AuthenticationEndpointUtil.i18n(resourceBundle, "or");
String orString = AuthenticationEndpointUtil.i18n(resourceBundle, "or").toLowerCase();
usernameLabel = String.join(", ", attributeList.subList(0, attributeList.size() - 1))
+ (attributeList.size() > 1 ? " " + orString + " " : "")
+ attributeList.get(attributeList.size() - 1);
Expand Down

0 comments on commit be64a10

Please sign in to comment.