LogLineDetailsFields: update word break (#111469)

This commit is contained in:
Matias Chomicki 2025-09-23 14:51:09 +02:00 committed by GitHub
parent dafedf84ce
commit 6d3b3ea239
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -419,7 +419,7 @@ const getFieldStyles = (theme: GrafanaTheme2) => ({
display: 'flex', display: 'flex',
lineHeight: theme.typography.body.lineHeight, lineHeight: theme.typography.body.lineHeight,
whiteSpace: 'pre-wrap', whiteSpace: 'pre-wrap',
wordBreak: 'break-all', wordBreak: 'break-word',
maxHeight: '50vh', maxHeight: '50vh',
overflow: 'auto', overflow: 'auto',
}), }),