summaryrefslogtreecommitdiffstats
path: root/web/react/stores/search_store.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'web/react/stores/search_store.jsx')
-rw-r--r--web/react/stores/search_store.jsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/web/react/stores/search_store.jsx b/web/react/stores/search_store.jsx
index f932c379a..549f355ef 100644
--- a/web/react/stores/search_store.jsx
+++ b/web/react/stores/search_store.jsx
@@ -119,11 +119,11 @@ SearchStore.dispatchToken = AppDispatcher.register((payload) => {
var action = payload.action;
switch (action.type) {
- case ActionTypes.RECIEVED_SEARCH:
+ case ActionTypes.RECEIVED_SEARCH:
SearchStore.storeSearchResults(action.results, action.is_mention_search);
SearchStore.emitSearchChange();
break;
- case ActionTypes.RECIEVED_SEARCH_TERM:
+ case ActionTypes.RECEIVED_SEARCH_TERM:
SearchStore.storeSearchTerm(action.term);
SearchStore.emitSearchTermChange(action.do_search, action.is_mention_search);
break;