Merge pull request #7306 from viown/fix-tuner-device-card-size

Add line break to card's secondary text
This commit is contained in:
Bill Thornton
2025-11-06 09:24:26 -05:00
committed by GitHub

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>
)}