The good news is the clusters table now works in the detail view. The bad news is the contents are wrong. It is a simple typo-style fix.
In detailsPanelNode.jsx, line 54
<DetailsSubpanelClusters discovery={node.metadata.discovery} clusters={node.nodes} region={this.state.region} />
simply needs clusters={nodes.nodes} changed to clusters={nodes.clusters}
The good news is the clusters table now works in the detail view. The bad news is the contents are wrong. It is a simple typo-style fix.
In detailsPanelNode.jsx, line 54
<DetailsSubpanelClusters discovery={node.metadata.discovery} clusters={node.nodes} region={this.state.region} />
simply needsclusters={nodes.nodes}
changed toclusters={nodes.clusters}
Thanks.