diff options
author | Renard | 2019-09-16 16:41:39 -0300 |
---|---|---|
committer | Renard | 2019-09-16 16:41:39 -0300 |
commit | 1b4db364d46d72f7ef7fa14d3291e087327854ff (patch) | |
tree | c54576c5dd1ce30838e287147c5e6cb95c93b982 | |
parent | 6a1d09aede3440a367ff575212eef97232f4369d (diff) | |
download | bai-client-1b4db364d46d72f7ef7fa14d3291e087327854ff.tar.gz bai-client-1b4db364d46d72f7ef7fa14d3291e087327854ff.tar.xz bai-client-1b4db364d46d72f7ef7fa14d3291e087327854ff.zip |
Quitar acción responder si hilo está cerrado
-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> |