mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 21:17:37 +03:00
Sort radio stations by name
This commit is contained in:
parent
d319b66ff3
commit
c748d669d6
2 changed files with 2 additions and 1 deletions
|
@ -51,7 +51,7 @@ func (api *Router) DeleteInternetRadio(r *http.Request) (*responses.Subsonic, er
|
||||||
|
|
||||||
func (api *Router) GetInternetRadios(r *http.Request) (*responses.Subsonic, error) {
|
func (api *Router) GetInternetRadios(r *http.Request) (*responses.Subsonic, error) {
|
||||||
ctx := r.Context()
|
ctx := r.Context()
|
||||||
radios, err := api.ds.Radio(ctx).GetAll()
|
radios, err := api.ds.Radio(ctx).GetAll(model.QueryOptions{Sort: "name"})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
|
@ -101,6 +101,7 @@ const RadioList = ({ permissions, ...props }) => {
|
||||||
<List
|
<List
|
||||||
{...props}
|
{...props}
|
||||||
exporter={false}
|
exporter={false}
|
||||||
|
sort={{ field: 'name', order: 'ASC' }}
|
||||||
bulkActionButtons={isAdmin ? undefined : false}
|
bulkActionButtons={isAdmin ? undefined : false}
|
||||||
hasCreate={isAdmin}
|
hasCreate={isAdmin}
|
||||||
actions={<RadioListActions isAdmin={isAdmin} />}
|
actions={<RadioListActions isAdmin={isAdmin} />}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue