1
0
Fork 0
mirror of https://github.com/navidrome/navidrome.git synced 2025-04-06 05:57:35 +03:00

Sort radio stations by name

This commit is contained in:
Deluan 2023-01-15 16:12:22 -05:00
parent d319b66ff3
commit c748d669d6
2 changed files with 2 additions and 1 deletions
ui/src/radio

View file

@ -101,6 +101,7 @@ const RadioList = ({ permissions, ...props }) => {
<List
{...props}
exporter={false}
sort={{ field: 'name', order: 'ASC' }}
bulkActionButtons={isAdmin ? undefined : false}
hasCreate={isAdmin}
actions={<RadioListActions isAdmin={isAdmin} />}