Skip to content

Commit

Permalink
Always show search in login page
Browse files Browse the repository at this point in the history
  • Loading branch information
linathedog committed Nov 26, 2024
1 parent 7186c33 commit b14f7bb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
For Keycloak upstream changelog please see https://www.keycloak.org/docs/latest/release_notes/index.html.
Full Keycloak upstream jira issue can be shown if filtered by Fix version. For example [Keycloak jira issue for 15.0.2 version](https://issues.redhat.com/browse/KEYCLOAK-19161?jql=project%20%3D%20keycloak%20and%20fixVersion%20%3D%2015.0.2)

## [5.4.0] - 2024-26-11
### Changed
- Always show search for IdPs in login page

## [5.3.2] - 2024-11-14
### Changed
- Change ui for last login IdPs
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/theme/rciam/login/login.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@

<div ng-if="(idps!=null && idps.length>0) || fetchParams.keyword!=null" id="kc-social-providers" class="${properties.kcFormSocialAccountSectionClass!}">

<div ng-if="(idps.length >= maxIdPsWithoutSearch && fetchParams.keyword==null) || fetchParams.keyword!=null" class="input-container">
<div ng-if="(fetchParams.keyword==null) || fetchParams.keyword!=null" class="input-container">
<i class="kc-social-provider-logo fa fa-search" id="kc-providers-filter-button"> </i>
<input id="kc-providers-filter" type="text" placeholder="Search your authentication provider" ng-model="fetchParams.keyword" style="padding: 5px 40px;">
</div>
Expand Down

0 comments on commit b14f7bb

Please sign in to comment.