forked from External/mage
Sort user list case insensitive.
This commit is contained in:
parent
a5c0ae1b41
commit
43fed81ff4
3 changed files with 3 additions and 1 deletions
|
|
@ -206,6 +206,6 @@ class TimestampSorter implements Comparator<Table> {
|
|||
class UserNameSorter implements Comparator<UsersView> {
|
||||
@Override
|
||||
public int compare(UsersView one, UsersView two) {
|
||||
return one.getUserName().compareTo(two.getUserName());
|
||||
return one.getUserName().compareToIgnoreCase(two.getUserName());
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue