summaryrefslogtreecommitdiffstats
path: root/webapp/components/post_view
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/components/post_view')
-rw-r--r--webapp/components/post_view/components/post_info.jsx5
1 files changed, 4 insertions, 1 deletions
diff --git a/webapp/components/post_view/components/post_info.jsx b/webapp/components/post_view/components/post_info.jsx
index e95afe3ed..81e6a1fc2 100644
--- a/webapp/components/post_view/components/post_info.jsx
+++ b/webapp/components/post_view/components/post_info.jsx
@@ -147,7 +147,10 @@ export default class PostInfo extends React.Component {
<a
href='#'
role='menuitem'
- onClick={() => GlobalActions.showDeletePostModal(post, dataComments)}
+ onClick={(e) => {
+ e.preventDefault();
+ GlobalActions.showDeletePostModal(post, dataComments);
+ }}
>
<FormattedMessage
id='post_info.del'