mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-04-24 13:57:11 -04:00
Fixed: Don't Show Year in Discovery Overview if 0
This commit is contained in:
parent
c940a03847
commit
30956edf52
1 changed files with 1 additions and 1 deletions
|
@ -141,7 +141,7 @@ class AddListMovieOverview extends Component {
|
||||||
className={styles.title}
|
className={styles.title}
|
||||||
{...linkProps}
|
{...linkProps}
|
||||||
>
|
>
|
||||||
{title}({year})
|
{title} { year > 0 ? `(${year})` : ''}
|
||||||
|
|
||||||
{
|
{
|
||||||
isExcluded &&
|
isExcluded &&
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue