Skip to content

Commit a2d8556

Browse files
[Reporting] Fix report flyout content overflowing (#196552)
## 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) |
1 parent 2846a16 commit a2d8556

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

x-pack/plugins/reporting/public/management/components/report_info_flyout_content.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -240,6 +240,7 @@ export const ReportInfoFlyoutContent: FunctionComponent<Props> = ({ info }) => {
240240
defaultMessage: 'No report generated',
241241
})}
242242
color="danger"
243+
css={{ overflowWrap: 'break-word' }}
243244
>
244245
{errored}
245246
</EuiCallOut>
@@ -254,6 +255,7 @@ export const ReportInfoFlyoutContent: FunctionComponent<Props> = ({ info }) => {
254255
defaultMessage: 'Report contains warnings',
255256
})}
256257
color="warning"
258+
css={{ overflowWrap: 'break-word' }}
257259
>
258260
{warnings}
259261
</EuiCallOut>

0 commit comments

Comments
 (0)