summaryrefslogtreecommitdiffstats
path: root/web/react/components/search_results_header.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/components/search_results_header.jsx
parent96cb7345dafbf07027acb9dc05fc7d0808a4ac38 (diff)
downloadchat-2af861423619271651e01f1bb879c6e5f189f241.tar.gz
chat-2af861423619271651e01f1bb879c6e5f189f241.tar.bz2
chat-2af861423619271651e01f1bb879c6e5f189f241.zip
Renamed RECIEVED_* to RECEIVED_*
Diffstat (limited to 'web/react/components/search_results_header.jsx')
-rw-r--r--web/react/components/search_results_header.jsx8
1 files changed, 4 insertions, 4 deletions
diff --git a/web/react/components/search_results_header.jsx b/web/react/components/search_results_header.jsx
index 45f56f65a..7f88eb2c7 100644
--- a/web/react/components/search_results_header.jsx
+++ b/web/react/components/search_results_header.jsx
@@ -19,19 +19,19 @@ export default class SearchResultsHeader extends React.Component {
e.preventDefault();
AppDispatcher.handleServerAction({
- type: ActionTypes.RECIEVED_SEARCH,
+ type: ActionTypes.RECEIVED_SEARCH,
results: null
});
AppDispatcher.handleServerAction({
- type: ActionTypes.RECIEVED_SEARCH_TERM,
+ type: ActionTypes.RECEIVED_SEARCH_TERM,
term: null,
do_search: false,
is_mention_search: false
});
AppDispatcher.handleServerAction({
- type: ActionTypes.RECIEVED_POST_SELECTED,
+ type: ActionTypes.RECEIVED_POST_SELECTED,
results: null
});
}
@@ -72,4 +72,4 @@ export default class SearchResultsHeader extends React.Component {
SearchResultsHeader.propTypes = {
isMentionSearch: React.PropTypes.bool
-}; \ No newline at end of file
+};