diff options
Diffstat (limited to 'src/Post.js')
-rw-r--r-- | src/Post.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Post.js b/src/Post.js index 162afca..6fd0653 100644 --- a/src/Post.js +++ b/src/Post.js @@ -109,7 +109,7 @@ const Post = ({ index, post, locked, threadId, currentBoard }) => { /> </Comment.Text> <Comment.Actions> - <Comment.Action>Responder</Comment.Action> + {locked ? null : <Comment.Action>Responder</Comment.Action>} <Comment.Action>Reportar</Comment.Action> </Comment.Actions> </Comment.Content> |