1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-22 22:15:17 -04:00

Improve warning for missing release dates on movie details page when year is not set

Towards #10569
This commit is contained in:
Bogdan
2024-10-21 09:55:28 +03:00
parent abf1b9d6cf
commit 56a7725e52
4 changed files with 35 additions and 23 deletions
@@ -236,7 +236,7 @@ function MovieIndexRow(props: MovieIndexRowProps) {
if (name === 'year') {
return (
<VirtualTableRowCell key={name} className={styles[name]}>
{year}
{year > 0 ? year : null}
</VirtualTableRowCell>
);
}