Skip to content

Commit

Permalink
fix node id comparison (elastic#101941)
Browse files Browse the repository at this point in the history
Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
  • Loading branch information
neptunian and kibanamachine committed Jun 17, 2021
1 parent bdcc729 commit 6d3d4f3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ const getColumns = (showCgroupMetricsElasticsearch, setupMode, clusterUuid, aler
<AlertsStatus
showBadge={true}
alerts={alerts}
stateFilter={(state) => (state.nodeId || state.nodeUuid) === node.resolver.uuid}
stateFilter={(state) => (state.nodeId || state.nodeUuid) === node.resolver}
/>
);
},
Expand Down

0 comments on commit 6d3d4f3

Please sign in to comment.