Skip to content

Commit

Permalink
[Security Solution][Analyzer] - Fix analyzer panel text (elastic#170329)
Browse files Browse the repository at this point in the history
## Summary

Fixes an issue where the analyzer panel description titles are vertical:

<img width="1436" alt="image"
src="https://github.com/elastic/kibana/assets/17211684/2761016c-61fa-4355-b91f-53060640e3f6">


After this fix:

<img width="880" alt="Screenshot 2023-11-01 at 12 10 13 PM"
src="https://github.com/elastic/kibana/assets/17211684/cd86ced0-a121-4687-af61-5ffdfe7b16fb">
  • Loading branch information
michaelolo24 authored Nov 1, 2023
1 parent 6daad11 commit a2e2c51
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -330,6 +330,9 @@ function EventDetailBreadcrumbs({
}

const StyledDescriptionList = memo(styled(EuiDescriptionList)`
.euiDescriptionList__title {
word-break: normal;
}
.euiDescriptionList__title,
.euiDescriptionList__description {
overflow-wrap: break-word;
Expand Down

0 comments on commit a2e2c51

Please sign in to comment.