Fix extension repo url on small screens

This commit is contained in:
schroda
2025-04-25 00:29:37 +02:00
parent b503ab07e9
commit 6a6ff2cbe1

View File

@@ -151,7 +151,9 @@ export const MutableListSetting = ({
<ListItemText
primary={settingName}
secondary={values?.length ? values?.join(', ') : description}
secondaryTypographyProps={{ style: { display: 'flex', flexDirection: 'column' } }}
secondaryTypographyProps={{
style: { display: 'flex', flexDirection: 'column', wordBreak: 'break-word' },
}}
/>
</ListItemButton>