Skip to content

Commit

Permalink
identity recovery results paging visibility fix
Browse files Browse the repository at this point in the history
  • Loading branch information
KaterynaHonchar committed Aug 30, 2023
1 parent 6cc426d commit 327eddf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -231,6 +231,6 @@ private MidpointAuthentication getMidpointAuthentication() {
private boolean singlePageResult() {
var userList = recoveredIdentitiesModel.getObject();
int userCount = userList != null ? userList.size() : 0;
return userCount > 0 && userCount <= IDENTITY_PER_PAGE;
return userCount <= IDENTITY_PER_PAGE;
}
}

0 comments on commit 327eddf

Please sign in to comment.