summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarrison Healey <harrisonmhealey@gmail.com>2016-09-06 18:32:18 -0400
committerenahum <nahumhbl@gmail.com>2016-09-06 19:32:18 -0300
commit47d77d258961f95f4348b4745da062c08731b283 (patch)
treedfd2253afe25be4acebc9e43db7d14576e1df747
parent73692f010e1a0bf62f0a502797aca94f99012385 (diff)
downloadchat-47d77d258961f95f4348b4745da062c08731b283.tar.gz
chat-47d77d258961f95f4348b4745da062c08731b283.tar.bz2
chat-47d77d258961f95f4348b4745da062c08731b283.zip
Fixed emojis not being stored by EmojiStore on first page load (#3980)
-rw-r--r--webapp/components/logged_in.jsx3
1 files changed, 3 insertions, 0 deletions
diff --git a/webapp/components/logged_in.jsx b/webapp/components/logged_in.jsx
index 140270699..3b712ffe2 100644
--- a/webapp/components/logged_in.jsx
+++ b/webapp/components/logged_in.jsx
@@ -18,6 +18,9 @@ const BACKSPACE_CHAR = 8;
import React from 'react';
+// import the EmojiStore so that it'll register to receive the results of the listEmojis call further down
+import 'stores/emoji_store.jsx';
+
export default class LoggedIn extends React.Component {
constructor(params) {
super(params);