mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
make sure progress bar is visible (#142699)
This commit is contained in:
parent
61630e32fd
commit
bf6a55db1b
1 changed files with 3 additions and 1 deletions
|
@ -57,7 +57,9 @@ export function ReactExpressionRenderer({
|
|||
return (
|
||||
<div {...dataAttrs} className={classes}>
|
||||
{isEmpty && <EuiLoadingChart mono size="l" />}
|
||||
{isLoading && <EuiProgress size="xs" color="accent" position="absolute" />}
|
||||
{isLoading && (
|
||||
<EuiProgress size="xs" color="accent" position="absolute" style={{ zIndex: 1 }} />
|
||||
)}
|
||||
{!isLoading && error && renderError?.(error.message, error)}
|
||||
<div className="expExpressionRenderer__expression" style={expressionStyles} ref={nodeRef} />
|
||||
</div>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue