Netflix / vizceral-example

Example Vizceral app
Apache License 2.0
367 stars 165 forks source link

Clusters table in details subpanel incorrectly populated #14

Closed aSqrd-eSqrd closed 8 years ago

aSqrd-eSqrd commented 8 years ago

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}

Thanks.