1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-21 22:05:43 -04:00

Fixed: Show year and fix sorting for collection movies

This commit is contained in:
Bogdan
2023-10-08 01:41:15 +03:00
parent a2d505c795
commit f5692d6cf1
6 changed files with 29 additions and 21 deletions
@@ -21,6 +21,7 @@ function createMapStateToProps() {
return {
...collection,
movies: [...collection.movies].sort((a, b) => b.year - a.year),
genres: Array.from(new Set(allGenres)).slice(0, 3)
};
}