summaryrefslogtreecommitdiffstats
path: root/webapp/components
diff options
context:
space:
mode:
authorHarrison Healey <harrisonmhealey@gmail.com>2016-07-12 16:06:03 -0400
committerGitHub <noreply@github.com>2016-07-12 16:06:03 -0400
commitcaef414abea77bf0576aef927c9eaf0f205f9b6f (patch)
treef3e7597ab7c791186e5384bbf7e7b13aa973a832 /webapp/components
parent34ec30e80605e5285cd398be55318cc27d83939a (diff)
downloadchat-caef414abea77bf0576aef927c9eaf0f205f9b6f.tar.gz
chat-caef414abea77bf0576aef927c9eaf0f205f9b6f.tar.bz2
chat-caef414abea77bf0576aef927c9eaf0f205f9b6f.zip
PLT-3631 Properly update PostViewController when emojis change (#3565)
* Properly remove custom emojis from clientside store * Properly update PostViewController when emojis change
Diffstat (limited to 'webapp/components')
-rw-r--r--webapp/components/post_view/post_view_controller.jsx4
1 files changed, 4 insertions, 0 deletions
diff --git a/webapp/components/post_view/post_view_controller.jsx b/webapp/components/post_view/post_view_controller.jsx
index 17c3e94ae..e5743e657 100644
--- a/webapp/components/post_view/post_view_controller.jsx
+++ b/webapp/components/post_view/post_view_controller.jsx
@@ -247,6 +247,10 @@ export default class PostViewController extends React.Component {
return true;
}
+ if (nextState.emojis !== this.state.emojis) {
+ return true;
+ }
+
return false;
}