fix: blogroll sorting
This commit is contained in:
parent
781e8c525b
commit
a67d4b38a2
3 changed files with 4 additions and 4 deletions
|
@ -16,5 +16,5 @@ export default async function fetchGenresWithArtists() {
|
|||
return []
|
||||
}
|
||||
|
||||
return data
|
||||
return data.sort((a, b) => a['name'].toLowerCase().localeCompare(b['name'].toLowerCase()))
|
||||
}
|
Reference in a new issue