Fix smart playlist sort order on creation (#163)
This commit is contained in:
parent
0c54b79c09
commit
8233a56def
1 changed files with 3 additions and 1 deletions
|
@ -57,7 +57,9 @@ export const CreatePlaylistForm = ({ onCancel }: CreatePlaylistFormProps) => {
|
|||
isSmartPlaylist && smartPlaylist?.filters
|
||||
? {
|
||||
...convertQueryGroupToNDQuery(smartPlaylist.filters),
|
||||
...smartPlaylist.extraFilters,
|
||||
limit: smartPlaylist.extraFilters.limit,
|
||||
order: smartPlaylist.extraFilters.sortOrder,
|
||||
sort: smartPlaylist.extraFilters.sortBy,
|
||||
}
|
||||
: undefined,
|
||||
},
|
||||
|
|
Reference in a new issue