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:
@@ -236,7 +236,7 @@ function MovieIndexRow(props: MovieIndexRowProps) {
|
||||
if (name === 'year') {
|
||||
return (
|
||||
<VirtualTableRowCell key={name} className={styles[name]}>
|
||||
{year}
|
||||
{year > 0 ? year : null}
|
||||
</VirtualTableRowCell>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user