Backport pull request #7306 from jellyfin-web/release-10.11.z

Add line break to card's secondary text

Original-merge: 1c8f221006

Merged-by: thornbill <thornbill@users.noreply.github.com>

Backported-by: thornbill <thornbill@users.noreply.github.com>
This commit is contained in:
viown
2025-11-17 11:14:14 -05:00
committed by thornbill
parent 3dd636d520
commit 73d66d5612

View File

@@ -94,7 +94,13 @@ const BaseCard = ({
{title}
</Typography>
{text && (
<Typography variant='body2' color='text.secondary'>
<Typography
variant='body2'
color='text.secondary'
sx={{
lineBreak: 'anywhere'
}}
>
{text}
</Typography>
)}