Skip to content

Commit

Permalink
Fix report flyout content overflowing
Browse files Browse the repository at this point in the history
  • Loading branch information
kowalczyk-krzysztof committed Oct 16, 2024
1 parent 3d28d17 commit 42c37dd
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -240,6 +240,7 @@ export const ReportInfoFlyoutContent: FunctionComponent<Props> = ({ info }) => {
defaultMessage: 'No report generated',
})}
color="danger"
css={{ overflowWrap: 'break-word' }}
>
{errored}
</EuiCallOut>
Expand All @@ -254,6 +255,7 @@ export const ReportInfoFlyoutContent: FunctionComponent<Props> = ({ info }) => {
defaultMessage: 'Report contains warnings',
})}
color="warning"
css={{ overflowWrap: 'break-word' }}
>
{warnings}
</EuiCallOut>
Expand Down

0 comments on commit 42c37dd

Please sign in to comment.