Fix app list label sorting
This commit is contained in:
@@ -54,7 +54,7 @@ const listColumns = {
|
||||
if (!fullA || !fullA) return -1;
|
||||
const checkA = fullA.label || fullA.subdomain || fullA.fqdn;
|
||||
const checkB = fullB.label || fullB.subdomain || fullB.fqdn;
|
||||
return checkA < checkB ? -1 : (checkA > checkB ? 1 : 0);
|
||||
return checkA.toLowerCase() < checkB.toLowerCase() ? -1 : (checkA.toLowerCase() > checkB.toLowerCase() ? 1 : 0);
|
||||
},
|
||||
},
|
||||
fqdn: {
|
||||
|
||||
Reference in New Issue
Block a user