Skip to content

Commit

Permalink
Fix missing code not backported from elastic#52276
Browse files Browse the repository at this point in the history
  • Loading branch information
estermv committed Oct 21, 2021
1 parent 6c3750d commit ef5c44c
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ import {
EuiFlexGrid,
EuiFlexItem,
EuiPanel,
EuiScreenReaderOnly,
} from '@elastic/eui';
import { FormattedMessage } from '@kbn/i18n/react';
import { NodeDetailStatus } from '../node_detail_status';
Expand Down Expand Up @@ -53,6 +54,14 @@ export const Node = ({ nodeSummary, metrics, logs, alerts, nodeId, clusterUuid,
return (
<EuiPage>
<EuiPageBody>
<EuiScreenReaderOnly>
<h1>
<FormattedMessage
id="xpack.monitoring.elasticsearch.node.heading"
defaultMessage="Elasticsearch node"
/>
</h1>
</EuiScreenReaderOnly>
<EuiPanel>
<NodeDetailStatus stats={nodeSummary} alerts={alerts} />
</EuiPanel>
Expand Down

0 comments on commit ef5c44c

Please sign in to comment.