mirror of
https://github.com/Radarr/Radarr
synced 2025-02-22 06:11:09 +00:00
Show movie title as tooltip on movie index
This commit is contained in:
parent
71dfd897a8
commit
4eb89eb851
1 changed files with 6 additions and 2 deletions
|
@ -127,7 +127,7 @@ function MovieIndexPoster(props: MovieIndexPosterProps) {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className={styles.content}>
|
<div className={styles.content}>
|
||||||
<div className={styles.posterContainer}>
|
<div className={styles.posterContainer} title={title}>
|
||||||
{isSelectMode ? <MovieIndexPosterSelect movieId={movieId} /> : null}
|
{isSelectMode ? <MovieIndexPosterSelect movieId={movieId} /> : null}
|
||||||
|
|
||||||
<Label className={styles.controls}>
|
<Label className={styles.controls}>
|
||||||
|
@ -198,7 +198,11 @@ function MovieIndexPoster(props: MovieIndexPosterProps) {
|
||||||
bottomRadius={false}
|
bottomRadius={false}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
{showTitle ? <div className={styles.title}>{title}</div> : null}
|
{showTitle ? (
|
||||||
|
<div className={styles.title} title={title}>
|
||||||
|
{title}
|
||||||
|
</div>
|
||||||
|
) : null}
|
||||||
|
|
||||||
{showMonitored ? (
|
{showMonitored ? (
|
||||||
<div className={styles.title}>
|
<div className={styles.title}>
|
||||||
|
|
Loading…
Reference in a new issue