mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
[ES|QL] Fixes the emotion bug (#209567)
## Summary Closes https://github.com/elastic/kibana/issues/209679 When I removed the scss in favor of emotion I used this function wrongly. This PR is fixing it
This commit is contained in:
parent
015a4ac618
commit
05b1cf2962
1 changed files with 6 additions and 1 deletions
|
@ -87,7 +87,12 @@ function ErrorsWarningsContent({
|
|||
</EuiFlexItem>
|
||||
</EuiFlexGroup>
|
||||
</EuiFlexItem>
|
||||
<EuiFlexItem grow={false} css={euiTextBreakWord()}>
|
||||
<EuiFlexItem
|
||||
grow={false}
|
||||
css={css`
|
||||
${euiTextBreakWord()}
|
||||
`}
|
||||
>
|
||||
{item.message}
|
||||
</EuiFlexItem>
|
||||
</EuiFlexGroup>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue