summaryrefslogtreecommitdiffstats
path: root/web/react/components/post.jsx
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2016-02-08 12:56:36 -0500
committerChristopher Speller <crspeller@gmail.com>2016-02-08 12:56:36 -0500
commit0fcb4252c8f873f5c28c08fc600368cf8d1fe6a8 (patch)
treee2506f66379ba6b3bd93b3753c2064332eb3fd55 /web/react/components/post.jsx
parentb6300b1656506b3ce264c8844dd11865ca61d391 (diff)
parent2af861423619271651e01f1bb879c6e5f189f241 (diff)
downloadchat-0fcb4252c8f873f5c28c08fc600368cf8d1fe6a8.tar.gz
chat-0fcb4252c8f873f5c28c08fc600368cf8d1fe6a8.tar.bz2
chat-0fcb4252c8f873f5c28c08fc600368cf8d1fe6a8.zip
Merge pull request #2101 from hmhealey/plt1415
PLT-1415 Renamed RECIEVED_* to RECEIVED_*
Diffstat (limited to 'web/react/components/post.jsx')
-rw-r--r--web/react/components/post.jsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/web/react/components/post.jsx b/web/react/components/post.jsx
index 53fe7fb5d..3619a9f8f 100644
--- a/web/react/components/post.jsx
+++ b/web/react/components/post.jsx
@@ -31,12 +31,12 @@ export default class Post extends React.Component {
data.posts = this.props.posts;
AppDispatcher.handleServerAction({
- type: ActionTypes.RECIEVED_POST_SELECTED,
+ type: ActionTypes.RECEIVED_POST_SELECTED,
post_list: data
});
AppDispatcher.handleServerAction({
- type: ActionTypes.RECIEVED_SEARCH,
+ type: ActionTypes.RECEIVED_SEARCH,
results: null
});
}
@@ -59,7 +59,7 @@ export default class Post extends React.Component {
ChannelStore.setChannelMember(member);
AppDispatcher.handleServerAction({
- type: ActionTypes.RECIEVED_POST,
+ type: ActionTypes.RECEIVED_POST,
post: data
});
},