Fix long lines in web app by adding horizontal scroll, closes #1363

This commit is contained in:
binwiederhier
2026-02-01 17:42:56 -05:00
parent 9fbf5e460e
commit 7207839b2a
3 changed files with 12 additions and 9 deletions

View File

@@ -303,7 +303,7 @@ const NotificationItem = (props) => {
{formatTitle(notification)}
</Typography>
)}
<Typography variant="body1" sx={{ whiteSpace: "pre-line" }}>
<Typography variant="body1" sx={{ whiteSpace: "pre-line", overflowX: "auto" }}>
<NotificationBody notification={notification} />
{maybeActionErrors(notification)}
</Typography>