Change side-nav cluster order to sort by name (#6942)

This commit is contained in:
Jordon Leach 2022-09-26 08:12:37 -04:00 committed by GitHub
parent 75ad91c287
commit cec1bb8aff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -98,7 +98,7 @@ export default {
const out = search ? this.clusters.filter(item => item.label.toLowerCase().includes(search)) : this.clusters;
const sorted = sortBy(out, ['ready:desc', 'label']);
const sorted = sortBy(out, ['name:desc', 'label']);
return sorted;
},