diff options
Diffstat (limited to 'src/ReplyForm.js')
-rw-r--r-- | src/ReplyForm.js | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/ReplyForm.js b/src/ReplyForm.js index 70e5d49..1dab761 100644 --- a/src/ReplyForm.js +++ b/src/ReplyForm.js @@ -34,7 +34,7 @@ class ReplyForm extends Component { () => { const { submittedName, submittedEmail, submittedMessage } = this.state; const data = { - board: this.props.dir, + board: this.props.currentBoard.dir, parent: this.props.parent, name: "", email: "", @@ -67,6 +67,14 @@ class ReplyForm extends Component { render() { const { name, email, message, replyRes } = this.state; + if (this.props.locked === 1) { + return ( + <Message negative> + <Message.Header>Hilo cerrado</Message.Header> + Este hilo ha sido cerrado y no admite nuevas respuestas. + </Message> + ); + } return ( <Segment> {replyRes !== null ? ( |