fix artist discography year filter (#299)
This commit is contained in:
parent
f6667a39a0
commit
1a948ab86b
1 changed files with 1 additions and 1 deletions
|
@ -152,11 +152,11 @@ export const NavidromeAlbumFilters = ({
|
||||||
customFilters,
|
customFilters,
|
||||||
data: {
|
data: {
|
||||||
_custom: {
|
_custom: {
|
||||||
|
...filter._custom,
|
||||||
navidrome: {
|
navidrome: {
|
||||||
...filter._custom?.navidrome,
|
...filter._custom?.navidrome,
|
||||||
year: e === '' ? undefined : (e as number),
|
year: e === '' ? undefined : (e as number),
|
||||||
},
|
},
|
||||||
...filter._custom,
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
itemType: LibraryItem.ALBUM,
|
itemType: LibraryItem.ALBUM,
|
||||||
|
|
Reference in a new issue