Fixed: Don't Show Year in Discovery Overview if 0

pull/4848/head
Qstick 4 years ago
parent c940a03847
commit 30956edf52

@ -141,7 +141,7 @@ class AddListMovieOverview extends Component {
className={styles.title}
{...linkProps}
>
{title}({year})
{title} { year > 0 ? `(${year})` : ''}
{
isExcluded &&

Loading…
Cancel
Save