mirror of
https://github.com/Radarr/Radarr
synced 2025-02-24 15:21:28 +00:00
Fixed: Show "Not Available" instead of "?" when no InCinemas date
This commit is contained in:
parent
3de65daf85
commit
64e9e48217
1 changed files with 1 additions and 12 deletions
|
@ -20,7 +20,7 @@ function MovieStatus(props) {
|
||||||
|
|
||||||
const hasMovieFile = !!movieFile;
|
const hasMovieFile = !!movieFile;
|
||||||
const isQueued = !!queueItem;
|
const isQueued = !!queueItem;
|
||||||
const hasReleased = isAvailable;
|
const hasReleased = isAvailable && inCinemas;
|
||||||
|
|
||||||
if (isQueued) {
|
if (isQueued) {
|
||||||
const {
|
const {
|
||||||
|
@ -74,17 +74,6 @@ function MovieStatus(props) {
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!inCinemas) {
|
|
||||||
return (
|
|
||||||
<div className={styles.center}>
|
|
||||||
<Icon
|
|
||||||
name={icons.TBA}
|
|
||||||
title="TBA"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!monitored) {
|
if (!monitored) {
|
||||||
return (
|
return (
|
||||||
<div className={styles.center}>
|
<div className={styles.center}>
|
||||||
|
|
Loading…
Reference in a new issue