mirror of
https://github.com/jeffvli/sonixd.git
synced 2026-05-19 14:21:16 -04:00
Change genre filter to use title instead of id
This commit is contained in:
@@ -924,13 +924,13 @@ const ListViewTable = ({
|
||||
dispatch(
|
||||
setActive({
|
||||
...album.active,
|
||||
filter: rowData[column.dataKey][0]?.id,
|
||||
filter: rowData[column.dataKey][0]?.title,
|
||||
})
|
||||
);
|
||||
setTimeout(() => {
|
||||
history.push(
|
||||
`/library/album?sortType=${
|
||||
rowData[column.dataKey][0]?.id
|
||||
rowData[column.dataKey][0]?.title
|
||||
}`
|
||||
);
|
||||
}, 50);
|
||||
|
||||
Reference in New Issue
Block a user