mirror of
https://github.com/Readarr/Readarr
synced 2026-05-09 05:21:41 +02:00
Fixed: Long paths overflowing in artist history
Co-Authored-By: Mark McDowall <markus101@users.noreply.github.com> Signed-off-by: Robin Dadswell <robin@dadswell.email>
This commit is contained in:
parent
2abee1970f
commit
39a0cb3f43
2 changed files with 7 additions and 1 deletions
|
|
@ -1,3 +1,9 @@
|
||||||
|
.sourceTitle {
|
||||||
|
composes: cell from '~Components/Table/Cells/TableRowCell.css';
|
||||||
|
|
||||||
|
word-break: break-word;
|
||||||
|
}
|
||||||
|
|
||||||
.details,
|
.details,
|
||||||
.actions {
|
.actions {
|
||||||
composes: cell from '~Components/Table/Cells/TableRowCell.css';
|
composes: cell from '~Components/Table/Cells/TableRowCell.css';
|
||||||
|
|
|
||||||
|
|
@ -94,7 +94,7 @@ class AuthorHistoryRow extends Component {
|
||||||
{book.title}
|
{book.title}
|
||||||
</TableRowCell>
|
</TableRowCell>
|
||||||
|
|
||||||
<TableRowCell>
|
<TableRowCell className={styles.sourceTitle}>
|
||||||
{sourceTitle}
|
{sourceTitle}
|
||||||
</TableRowCell>
|
</TableRowCell>
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue