1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-18 21:35:51 -04:00

Fix issue with the table stretching on the Movie > Details > Search when the Title is extremely long

This commit is contained in:
nitsua
2020-08-08 12:03:36 -04:00
committed by Qstick
parent 28177eb042
commit 154092b921
3 changed files with 34 additions and 9 deletions
@@ -142,8 +142,13 @@ class InteractiveSearchRow extends Component {
</TableRowCell>
<TableRowCell className={styles.title}>
<Link to={infoUrl}>
{title}
<Link
to={infoUrl}
title={title}
>
<div>
{title}
</div>
</Link>
</TableRowCell>