summaryrefslogtreecommitdiffstats
path: root/web/react/dispatcher
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/dispatcher
parent96cb7345dafbf07027acb9dc05fc7d0808a4ac38 (diff)
downloadchat-2af861423619271651e01f1bb879c6e5f189f241.tar.gz
chat-2af861423619271651e01f1bb879c6e5f189f241.tar.bz2
chat-2af861423619271651e01f1bb879c6e5f189f241.zip
Renamed RECIEVED_* to RECEIVED_*
Diffstat (limited to 'web/react/dispatcher')
-rw-r--r--web/react/dispatcher/event_helpers.jsx10
1 files changed, 5 insertions, 5 deletions
diff --git a/web/react/dispatcher/event_helpers.jsx b/web/react/dispatcher/event_helpers.jsx
index c1041e438..5476d707f 100644
--- a/web/react/dispatcher/event_helpers.jsx
+++ b/web/react/dispatcher/event_helpers.jsx
@@ -30,7 +30,7 @@ export function emitPostFocusEvent(postId) {
postId,
(data) => {
AppDispatcher.handleServerAction({
- type: ActionTypes.RECIEVED_FOCUSED_POST,
+ type: ActionTypes.RECEIVED_FOCUSED_POST,
postId,
post_list: data
});
@@ -47,13 +47,13 @@ export function emitPostFocusRightHandSideFromSearch(post, isMentionSearch) {
post.id,
(data) => {
AppDispatcher.handleServerAction({
- type: ActionTypes.RECIEVED_POST_SELECTED,
+ type: ActionTypes.RECEIVED_POST_SELECTED,
post_list: data,
from_search: SearchStore.getSearchTerm()
});
AppDispatcher.handleServerAction({
- type: ActionTypes.RECIEVED_SEARCH,
+ type: ActionTypes.RECEIVED_SEARCH,
results: null,
is_mention_search: isMentionSearch
});
@@ -89,7 +89,7 @@ export function emitLoadMorePostsFocusedBottomEvent() {
export function emitPostRecievedEvent(post) {
AppDispatcher.handleServerAction({
- type: ActionTypes.RECIEVED_POST,
+ type: ActionTypes.RECEIVED_POST,
post
});
}
@@ -177,7 +177,7 @@ export function emitClearSuggestions(suggestionId) {
export function emitPreferenceChangedEvent(preference) {
AppDispatcher.handleServerAction({
- type: Constants.ActionTypes.RECIEVED_PREFERENCE,
+ type: Constants.ActionTypes.RECEIVED_PREFERENCE,
preference
});
}