mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
center spinner in NoData component (#115210)
Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
This commit is contained in:
parent
cf4a687906
commit
b19b63b516
1 changed files with 3 additions and 3 deletions
|
@ -15,18 +15,18 @@ export function CheckingSettings({ checkMessage }) {
|
|||
const message = checkMessage || (
|
||||
<FormattedMessage
|
||||
id="xpack.monitoring.noData.defaultLoadingMessage"
|
||||
defaultMessage="Loading, please wait"
|
||||
defaultMessage="Loading, please wait..."
|
||||
/>
|
||||
);
|
||||
return (
|
||||
<Fragment>
|
||||
<LookingFor />
|
||||
<EuiHorizontalRule size="half" />
|
||||
<EuiFlexGroup alignItems="center" gutterSize="s">
|
||||
<EuiFlexGroup alignItems="center" gutterSize="s" justifyContent="center">
|
||||
<EuiFlexItem grow={false}>
|
||||
<EuiLoadingSpinner size="m" />
|
||||
</EuiFlexItem>
|
||||
<EuiFlexItem grow={false}>{message}...</EuiFlexItem>
|
||||
<EuiFlexItem grow={false}>{message}</EuiFlexItem>
|
||||
</EuiFlexGroup>
|
||||
</Fragment>
|
||||
);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue