summaryrefslogtreecommitdiffstats
path: root/web/react/components/rhs_root_post.jsx
diff options
context:
space:
mode:
authorhmhealey <harrisonmhealey@gmail.com>2015-11-13 12:20:33 -0500
committerhmhealey <harrisonmhealey@gmail.com>2015-11-18 08:50:49 -0500
commita4267471a57c95dd99e17ee5e9fcc95892970764 (patch)
tree0db5c19e03609cbce3f70e20c7fe45a10f640d18 /web/react/components/rhs_root_post.jsx
parent7b01528d17c61a762ded17a23ccd9a2a728910a0 (diff)
downloadchat-a4267471a57c95dd99e17ee5e9fcc95892970764.tar.gz
chat-a4267471a57c95dd99e17ee5e9fcc95892970764.tar.bz2
chat-a4267471a57c95dd99e17ee5e9fcc95892970764.zip
Converted DeletePostModal to React-Bootstrap
Diffstat (limited to 'web/react/components/rhs_root_post.jsx')
-rw-r--r--web/react/components/rhs_root_post.jsx12
1 files changed, 4 insertions, 8 deletions
diff --git a/web/react/components/rhs_root_post.jsx b/web/react/components/rhs_root_post.jsx
index 69de5d523..84fdc014a 100644
--- a/web/react/components/rhs_root_post.jsx
+++ b/web/react/components/rhs_root_post.jsx
@@ -6,6 +6,7 @@ var UserProfile = require('./user_profile.jsx');
var UserStore = require('../stores/user_store.jsx');
var TextFormatting = require('../utils/text_formatting.jsx');
var utils = require('../utils/utils.jsx');
+var DeletePostModal = require('./delete_post_modal.jsx');
var FileAttachmentList = require('./file_attachment_list.jsx');
var twemoji = require('twemoji');
var Constants = require('../utils/constants.jsx');
@@ -86,21 +87,16 @@ export default class RhsRootPost extends React.Component {
data-postid={post.id}
data-channelid={post.channel_id}
>
- Edit
+ {'Edit'}
</a>
</li>
<li role='presentation'>
<a
href='#'
role='menuitem'
- data-toggle='modal'
- data-target='#delete_post'
- data-title={type}
- data-postid={post.id}
- data-channelid={post.channel_id}
- data-comments={this.props.commentCount}
+ onClick={() => DeletePostModal.show(post, this.props.commentCount)}
>
- Delete
+ {'Delete'}
</a>
</li>
</ul>