1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-24 22:35:49 -04:00

Improve status labels for deleted movies

This commit is contained in:
Bogdan
2024-08-15 19:14:22 +03:00
parent a4301f8db0
commit ccbc8f591b
44 changed files with 150 additions and 132 deletions
@@ -142,6 +142,11 @@ function MovieIndexOverview(props: MovieIndexOverviewProps) {
<div className={styles.poster}>
<div className={styles.posterContainer}>
{isSelectMode ? <MovieIndexPosterSelect movieId={movieId} /> : null}
{status === 'deleted' ? (
<div className={styles.deleted} title={translate('Deleted')} />
) : null}
<Link className={styles.link} style={elementStyle} to={link}>
<MoviePoster
className={styles.poster}