summaryrefslogtreecommitdiffstats
path: root/web/react/components/sidebar.jsx
diff options
context:
space:
mode:
authorJoramWilander <jwawilander@gmail.com>2015-11-12 11:19:59 -0500
committerJoramWilander <jwawilander@gmail.com>2015-11-12 11:19:59 -0500
commit50815f9be7195d736debd6bcd9d300dd95bbc738 (patch)
treed6060dce1cf036285019eac6ccba1ff07df6ad80 /web/react/components/sidebar.jsx
parent13a251a5ee940383e5a026284275b1f31fb476df (diff)
downloadchat-50815f9be7195d736debd6bcd9d300dd95bbc738.tar.gz
chat-50815f9be7195d736debd6bcd9d300dd95bbc738.tar.bz2
chat-50815f9be7195d736debd6bcd9d300dd95bbc738.zip
Rename areStatesEqual to areObjectsEqual and make it more comprehensive and accurate.
Diffstat (limited to 'web/react/components/sidebar.jsx')
-rw-r--r--web/react/components/sidebar.jsx7
1 files changed, 2 insertions, 5 deletions
diff --git a/web/react/components/sidebar.jsx b/web/react/components/sidebar.jsx
index f5ce5c10e..c51eea9f6 100644
--- a/web/react/components/sidebar.jsx
+++ b/web/react/components/sidebar.jsx
@@ -173,7 +173,7 @@ export default class Sidebar extends React.Component {
window.addEventListener('resize', this.handleResize);
}
shouldComponentUpdate(nextProps, nextState) {
- if (!Utils.areStatesEqual(nextState, this.state)) {
+ if (!Utils.areObjectsEqual(nextState, this.state)) {
return true;
}
return false;
@@ -205,10 +205,7 @@ export default class Sidebar extends React.Component {
}
}
onChange() {
- var newState = this.getStateFromStores();
- if (!Utils.areStatesEqual(newState, this.state)) {
- this.setState(newState);
- }
+ this.setState(this.getStateFromStores());
}
updateTitle() {
const channel = ChannelStore.getCurrent();