summaryrefslogtreecommitdiffstats
path: root/web/react/components/delete_post_modal.jsx
diff options
context:
space:
mode:
authorJoramWilander <jwawilander@gmail.com>2016-02-23 11:09:59 -0500
committerJoramWilander <jwawilander@gmail.com>2016-02-23 11:09:59 -0500
commit1f049af2b7ea41a5e1e79a8263e10fa58f186c8d (patch)
tree4a49aef95e886f10052b83319588f02ec75d830e /web/react/components/delete_post_modal.jsx
parentc16071afc5320677bc2c13fa4dff941152e18970 (diff)
downloadchat-1f049af2b7ea41a5e1e79a8263e10fa58f186c8d.tar.gz
chat-1f049af2b7ea41a5e1e79a8263e10fa58f186c8d.tar.bz2
chat-1f049af2b7ea41a5e1e79a8263e10fa58f186c8d.zip
Refactor listener out of user profile and fix thread logic
Diffstat (limited to 'web/react/components/delete_post_modal.jsx')
-rw-r--r--web/react/components/delete_post_modal.jsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/web/react/components/delete_post_modal.jsx b/web/react/components/delete_post_modal.jsx
index 773d0b420..f8e3e406a 100644
--- a/web/react/components/delete_post_modal.jsx
+++ b/web/react/components/delete_post_modal.jsx
@@ -68,7 +68,7 @@ export default class DeletePostModal extends React.Component {
AppDispatcher.handleServerAction({
type: ActionTypes.RECEIVED_POST_SELECTED,
- results: null
+ postId: null
});
} else if (selectedPost.id === this.state.post.id && this.state.root_id) {
if (selectedPost.root_id && selectedPost.root_id.length > 0 && selectedList.posts[selectedPost.root_id]) {
@@ -77,7 +77,7 @@ export default class DeletePostModal extends React.Component {
AppDispatcher.handleServerAction({
type: ActionTypes.RECEIVED_POST_SELECTED,
- post_list: selectedList
+ postId: selectedPost.root_id
});
AppDispatcher.handleServerAction({