1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-25 22:37:27 -04:00

New: Tooltip with extra genres on search and collections

This commit is contained in:
Bogdan
2024-12-13 19:16:44 +02:00
parent 9780d20f8a
commit bea943adf8
6 changed files with 12 additions and 10 deletions
@@ -22,7 +22,7 @@ function createMapStateToProps() {
return {
...collection,
movies: [...collection.movies].sort((a, b) => b.year - a.year),
genres: Array.from(new Set(allGenres)).slice(0, 3)
genres: Array.from(new Set(allGenres))
};
}
);