From 7d72a4d717eb7c3c33429da80420a2d26af1fb25 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Atte=20Kein=C3=A4nen?= <atte.keinanen@gmail.com> Date: Thu, 4 May 2017 11:47:13 -0700 Subject: [PATCH] Get rid of shouldComponentUpdate altogether --- frontend/src/metabase/dashboard/components/DashboardGrid.jsx | 4 ---- 1 file changed, 4 deletions(-) diff --git a/frontend/src/metabase/dashboard/components/DashboardGrid.jsx b/frontend/src/metabase/dashboard/components/DashboardGrid.jsx index db1d44d30f0..d1bafe281e3 100644 --- a/frontend/src/metabase/dashboard/components/DashboardGrid.jsx +++ b/frontend/src/metabase/dashboard/components/DashboardGrid.jsx @@ -65,10 +65,6 @@ export default class DashboardGrid extends Component { isEditingParameter: false }; - shouldComponentUpdate(nextProps, nextState) { - return !(shallowEqual(this.props, nextProps) && shallowEqual(this.state, nextState)); - } - componentWillReceiveProps(nextProps) { this.setState({ dashcards: this.getSortedDashcards(nextProps), -- GitLab