mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
[ML] Explain Log Rate Spikes: Fix kebab-cased inline css attributes. (#152996)
Fixes kebab-cased css attributes.
This commit is contained in:
parent
84cc0eb30f
commit
acc72e2abf
1 changed files with 2 additions and 2 deletions
|
@ -39,7 +39,7 @@ export const BrushBadge: FC<BrushBadgeProps> = ({
|
|||
<div
|
||||
css={{
|
||||
position: 'absolute',
|
||||
'margin-left': `${marginLeft}px`,
|
||||
marginLeft: `${marginLeft}px`,
|
||||
}}
|
||||
>
|
||||
<EuiToolTip
|
||||
|
@ -57,7 +57,7 @@ export const BrushBadge: FC<BrushBadgeProps> = ({
|
|||
}
|
||||
position="top"
|
||||
>
|
||||
<EuiBadge css={{ width, 'text-align': 'center' }}>{label}</EuiBadge>
|
||||
<EuiBadge css={{ width, textAlign: 'center' }}>{label}</EuiBadge>
|
||||
</EuiToolTip>
|
||||
</div>
|
||||
);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue