summaryrefslogtreecommitdiffstats
path: root/web/react/stores/channel_store.jsx
diff options
context:
space:
mode:
authorhmhealey <harrisonmhealey@gmail.com>2016-02-08 10:33:59 -0500
committerhmhealey <harrisonmhealey@gmail.com>2016-02-08 10:33:59 -0500
commit2af861423619271651e01f1bb879c6e5f189f241 (patch)
treeac8f500b7590bca75c43797f78a912c03b705ca8 /web/react/stores/channel_store.jsx
parent96cb7345dafbf07027acb9dc05fc7d0808a4ac38 (diff)
downloadchat-2af861423619271651e01f1bb879c6e5f189f241.tar.gz
chat-2af861423619271651e01f1bb879c6e5f189f241.tar.bz2
chat-2af861423619271651e01f1bb879c6e5f189f241.zip
Renamed RECIEVED_* to RECEIVED_*
Diffstat (limited to 'web/react/stores/channel_store.jsx')
-rw-r--r--web/react/stores/channel_store.jsx10
1 files changed, 5 insertions, 5 deletions
diff --git a/web/react/stores/channel_store.jsx b/web/react/stores/channel_store.jsx
index 2337a573d..d650b23c2 100644
--- a/web/react/stores/channel_store.jsx
+++ b/web/react/stores/channel_store.jsx
@@ -296,7 +296,7 @@ ChannelStore.dispatchToken = AppDispatcher.register((payload) => {
ChannelStore.emitChange();
break;
- case ActionTypes.RECIEVED_FOCUSED_POST: {
+ case ActionTypes.RECEIVED_FOCUSED_POST: {
const post = action.post_list.posts[action.postId];
ChannelStore.setCurrentId(post.channel_id);
ChannelStore.setPostMode(ChannelStore.POST_MODE_FOCUS);
@@ -304,7 +304,7 @@ ChannelStore.dispatchToken = AppDispatcher.register((payload) => {
break;
}
- case ActionTypes.RECIEVED_CHANNELS:
+ case ActionTypes.RECEIVED_CHANNELS:
ChannelStore.storeChannels(action.channels);
ChannelStore.storeChannelMembers(action.members);
currentId = ChannelStore.getCurrentId();
@@ -315,7 +315,7 @@ ChannelStore.dispatchToken = AppDispatcher.register((payload) => {
ChannelStore.emitChange();
break;
- case ActionTypes.RECIEVED_CHANNEL:
+ case ActionTypes.RECEIVED_CHANNEL:
ChannelStore.pStoreChannel(action.channel);
if (action.member) {
ChannelStore.pStoreChannelMember(action.member);
@@ -328,12 +328,12 @@ ChannelStore.dispatchToken = AppDispatcher.register((payload) => {
ChannelStore.emitChange();
break;
- case ActionTypes.RECIEVED_MORE_CHANNELS:
+ case ActionTypes.RECEIVED_MORE_CHANNELS:
ChannelStore.storeMoreChannels(action.channels);
ChannelStore.emitMoreChange();
break;
- case ActionTypes.RECIEVED_CHANNEL_EXTRA_INFO:
+ case ActionTypes.RECEIVED_CHANNEL_EXTRA_INFO:
var extraInfos = ChannelStore.getExtraInfos();
extraInfos[action.extra_info.id] = action.extra_info;
ChannelStore.storeExtraInfos(extraInfos);