mirror of
https://github.com/Prowlarr/Prowlarr
synced 2026-04-25 14:20:49 +02:00
Fixed: Season and Ep history parameters showing incorrect
This commit is contained in:
parent
e0f30c3eae
commit
a15f425eb5
1 changed files with 2 additions and 2 deletions
|
|
@ -194,7 +194,7 @@ class HistoryRow extends Component {
|
|||
data.season ?
|
||||
<HistoryRowParameter
|
||||
title='Season'
|
||||
value={data.tvMazeId}
|
||||
value={data.season}
|
||||
/> :
|
||||
null
|
||||
}
|
||||
|
|
@ -203,7 +203,7 @@ class HistoryRow extends Component {
|
|||
data.episode ?
|
||||
<HistoryRowParameter
|
||||
title='Episode'
|
||||
value={data.tvMazeId}
|
||||
value={data.episode}
|
||||
/> :
|
||||
null
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue