Skip to content

Commit

Permalink
[Reporting] Fix report flyout content overflowing (#196552)
Browse files Browse the repository at this point in the history
## Summary

This PR fixes text overflowing in the report flyout.

Fixes: #153699

## Visuals
| Previous | New |
|-----------------|-----------------|

|![image](https://github.com/user-attachments/assets/ae9c5ead-0689-4a16-8f3f-88342e4fbc94)
|
![image](https://github.com/user-attachments/assets/e7193a8e-8b35-49fa-a98f-4b3cac3a4791)
|

(cherry picked from commit a2d8556)
  • Loading branch information
kowalczyk-krzysztof committed Oct 17, 2024
1 parent 4c2bf78 commit 460a8af
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 460a8af

Please sign in to comment.