mirror of
https://github.com/Radarr/Radarr
synced 2026-04-21 16:45:08 +02:00
Fixed: Movie History showing ascending by date
This commit is contained in:
parent
975d31178b
commit
a711cbd475
1 changed files with 1 additions and 1 deletions
|
|
@ -84,7 +84,7 @@ class MovieHistoryTableContent extends Component {
|
|||
<Table columns={columns}>
|
||||
<TableBody>
|
||||
{
|
||||
items.reverse().map((item) => {
|
||||
items.map((item) => {
|
||||
return (
|
||||
<MovieHistoryRowConnector
|
||||
key={item.id}
|
||||
|
|
|
|||
Loading…
Reference in a new issue