mirror of
https://github.com/Radarr/Radarr
synced 2025-02-24 07:10:57 +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 isQueued = !!queueItem;
|
||||
const hasReleased = isAvailable;
|
||||
const hasReleased = isAvailable && inCinemas;
|
||||
|
||||
if (isQueued) {
|
||||
const {
|
||||
|
@ -74,17 +74,6 @@ function MovieStatus(props) {
|
|||
);
|
||||
}
|
||||
|
||||
if (!inCinemas) {
|
||||
return (
|
||||
<div className={styles.center}>
|
||||
<Icon
|
||||
name={icons.TBA}
|
||||
title="TBA"
|
||||
/>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
if (!monitored) {
|
||||
return (
|
||||
<div className={styles.center}>
|
||||
|
|
Loading…
Reference in a new issue