Multiline titles

This commit is contained in:
Manav Rathi
2024-11-08 14:45:38 +05:30
parent 60774518b2
commit cdf761d46b

View File

@@ -227,7 +227,14 @@ export const AttributedMiniDialog: React.FC<
}}
>
{attributes.title && (
<DialogTitle sx={{ "&&&": { padding: 0 } }}>
<DialogTitle
sx={{
"&&&": { padding: 0 },
// Wrap the title to the next line if there
// isn't sufficient space to make it fit in one.
flexShrink: 1,
}}
>
{attributes.title}
</DialogTitle>
)}