Skip to content
Snippets Groups Projects
Commit d12ca92e authored by David Baker's avatar David Baker
Browse files

Avoid double updating: setting the state will cause a re-render so forcing an...

Avoid double updating: setting the state will cause a re-render so forcing an update is redundant. Also bump js sdk dep to newest to match vector.
parent 030124a5
No related branches found
No related tags found
No related merge requests found
......@@ -24,7 +24,7 @@
"flux": "^2.0.3",
"glob": "^5.0.14",
"linkifyjs": "^2.0.0-beta.4",
"matrix-js-sdk": "^0.2.1",
"matrix-js-sdk": "^0.2.2",
"optimist": "^0.6.1",
"q": "^1.4.1",
"react": "^0.13.3",
......
......@@ -75,9 +75,6 @@ module.exports = {
if (tile) {
self._updateList(); // reorder the membership list
self.forceUpdate(); // FIXME: is the a more efficient way of reordering with react?
// XXX: do we even need to do this, or is it done by the main list?
tile.forceUpdate();
}
}
// FIXME: we should probably also reset 'lastActiveAgo' to zero whenever
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment