diff --git a/client/app/scripts/charts/nodes-chart-elements.js b/client/app/scripts/charts/nodes-chart-elements.js index de3034850..a9002ad8c 100644 --- a/client/app/scripts/charts/nodes-chart-elements.js +++ b/client/app/scripts/charts/nodes-chart-elements.js @@ -150,6 +150,10 @@ class NodesChartElements extends React.Component { renderNode(node) { const { isAnimated } = this.props; + // old versions of scope reports have a node shape of `storagesheet` + // if so, normalise to `sheet` + const shape = node.get('shape') === 'storagesheet' ? 'sheet' : node.get('shape'); + return (