Skip to content
Snippets Groups Projects
Commit 64f9c641 authored by srosse's avatar srosse
Browse files

no-jira: fix mix of lower case in coaching tool > members search

parent 7696357b
No related branches found
No related tags found
No related merge requests found
......@@ -64,8 +64,9 @@ public class StudentsTableDataModel extends DefaultFlexiTableDataModel<StudentSt
.filter(entry -> entry.getIdentityKey().equals(identityKey))
.collect(Collectors.toList());
} else {
final String loweredSearchString = searchString.toLowerCase();
filteredList = backupList.stream()
.filter(entry -> StudentListProvider.contains(searchString, entry))
.filter(entry -> StudentListProvider.contains(loweredSearchString, entry))
.collect(Collectors.toList());
}
super.setObjects(filteredList);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment