Skip to content

Commit fbdd794

Browse files
committed
Remove leftover loading_state from graph.
1 parent f0b4908 commit fbdd794

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

components/dash-core-components/src/fragments/Graph.react.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -474,10 +474,7 @@ class PlotlyGraph extends Component {
474474
shouldComponentUpdate(nextProps) {
475475
return (
476476
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)
477+
JSON.stringify(this.props.style) !== JSON.stringify(nextProps.style)
481478
);
482479
}
483480

0 commit comments

Comments
 (0)