diff --git a/src/components/list-tabular.cjsx b/src/components/list-tabular.cjsx
index f4d92e7f8..660edbb91 100644
--- a/src/components/list-tabular.cjsx
+++ b/src/components/list-tabular.cjsx
@@ -38,10 +38,6 @@ class ListTabular extends React.Component
@setupDataSource(@props.dataSource)
@updateRangeState()
- shouldComponentUpdate: (nextProps, nextState) =>
- not Utils.isEqualReact(nextProps, @props) or
- not Utils.isEqualReact(nextState, @state)
-
componentWillUnmount: =>
window.removeEventListener('resize', @onWindowResize, true)
window.clearTimeout(@_cleanupAnimationTimeout) if @_cleanupAnimationTimeout
@@ -211,15 +207,17 @@ class ListTabular extends React.Component
_rowForItem: (item, idx) =>
return false unless item
-
+
# Public: Scroll to the DOM node provided.
#