mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-06 21:12:15 -07:00
Fixed: UI and Command manager updates
Co-Authored-By: Mark McDowall <markus101@users.noreply.github.com>
This commit is contained in:
parent
d9a51a1d02
commit
ba96dad8c7
40 changed files with 301 additions and 255 deletions
|
@ -48,9 +48,10 @@ function EpisodeStatus(props) {
|
|||
|
||||
if (grabbed) {
|
||||
return (
|
||||
<div className={styles.center} title="Album is downloading">
|
||||
<div className={styles.center}>
|
||||
<Icon
|
||||
name={icons.DOWNLOADING}
|
||||
title="Album is downloading"
|
||||
/>
|
||||
</div>
|
||||
);
|
||||
|
@ -74,9 +75,10 @@ function EpisodeStatus(props) {
|
|||
|
||||
if (!airDateUtc) {
|
||||
return (
|
||||
<div className={styles.center} title="TBA">
|
||||
<div className={styles.center}>
|
||||
<Icon
|
||||
name={icons.TBA}
|
||||
title="TBA"
|
||||
/>
|
||||
</div>
|
||||
);
|
||||
|
@ -84,9 +86,10 @@ function EpisodeStatus(props) {
|
|||
|
||||
if (!monitored) {
|
||||
return (
|
||||
<div className={styles.center} title="Album is not monitored">
|
||||
<div className={styles.center}>
|
||||
<Icon
|
||||
name={icons.UNMONITORED}
|
||||
title="Album is not monitored"
|
||||
/>
|
||||
</div>
|
||||
);
|
||||
|
@ -94,18 +97,20 @@ function EpisodeStatus(props) {
|
|||
|
||||
if (hasAired) {
|
||||
return (
|
||||
<div className={styles.center} title="Track missing from disk">
|
||||
<div className={styles.center}>
|
||||
<Icon
|
||||
name={icons.MISSING}
|
||||
title="Track missing from disk"
|
||||
/>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
return (
|
||||
<div className={styles.center} title="Album has not aired">
|
||||
<div className={styles.center}>
|
||||
<Icon
|
||||
name={icons.NOT_AIRED}
|
||||
title="Album has not aired"
|
||||
/>
|
||||
</div>
|
||||
);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue