diff --git a/lib/components/content.js b/lib/components/content.js index cdc6e7832..0a3d344c7 100644 --- a/lib/components/content.js +++ b/lib/components/content.js @@ -70,11 +70,9 @@ class Content extends React.Component { */ shouldComponentUpdate = (props, state) => { - if (props.state.isNative) return false - return ( - props.state.selection != this.props.state.selection || - props.state.document != this.props.state.document - ) + return props.state.isNative + ? false + : true } /**