mirror of
https://github.com/Radarr/Radarr
synced 2024-12-29 03:15:19 +00:00
Fixed: Long paths overflowing in movie history
This commit is contained in:
parent
52da43aac4
commit
21bc18dd2a
2 changed files with 7 additions and 1 deletions
|
@ -3,3 +3,9 @@
|
||||||
|
|
||||||
min-width: 70px;
|
min-width: 70px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.sourceTitle {
|
||||||
|
composes: cell from '~Components/Table/Cells/TableRowCell.css';
|
||||||
|
|
||||||
|
word-break: break-word;
|
||||||
|
}
|
||||||
|
|
|
@ -81,7 +81,7 @@ class MovieHistoryRow extends Component {
|
||||||
data={data}
|
data={data}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<TableRowCell>
|
<TableRowCell className={styles.sourceTitle}>
|
||||||
{sourceTitle}
|
{sourceTitle}
|
||||||
</TableRowCell>
|
</TableRowCell>
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue