We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0b4908 commit fbdd794Copy full SHA for fbdd794
components/dash-core-components/src/fragments/Graph.react.js
@@ -474,10 +474,7 @@ class PlotlyGraph extends Component {
474
shouldComponentUpdate(nextProps) {
475
return (
476
this.props.id !== nextProps.id ||
477
- JSON.stringify(this.props.style) !==
478
- JSON.stringify(nextProps.style) ||
479
- JSON.stringify(this.props.loading_state) !==
480
- JSON.stringify(nextProps.loading_state)
+ JSON.stringify(this.props.style) !== JSON.stringify(nextProps.style)
481
);
482
}
483
0 commit comments