PLT-5700 Fixing channel sorting in android and ios (#343)
This commit is contained in:
parent
13c624b722
commit
a684c0f45b
1 changed files with 1 additions and 1 deletions
|
|
@ -167,7 +167,7 @@ export function completeDirectChannelInfo(usersState, myPreferences, channel) {
|
|||
}
|
||||
|
||||
export function buildDisplayNameAndTypeComparable(channel) {
|
||||
return (typeToPrefixMap[channel.type] || defaultPrefix) + channel.display_name + channel.name;
|
||||
return (typeToPrefixMap[channel.type] || defaultPrefix) + channel.display_name.toLocaleLowerCase() + channel.name.toLocaleLowerCase();
|
||||
}
|
||||
|
||||
function not(f) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue