diff options
Diffstat (limited to 'src/ReplyForm.js')
-rw-r--r-- | src/ReplyForm.js | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/ReplyForm.js b/src/ReplyForm.js index 564ed88..6ef025a 100644 --- a/src/ReplyForm.js +++ b/src/ReplyForm.js @@ -8,7 +8,10 @@ class ReplyForm extends Component { this.state = { name: "", email: "", - message: "", + message: + this.props.replyIndex !== null + ? ">>" + this.props.replyIndex + "\n" + : "", attachment: "", submittedName: "", submittedEmail: "", @@ -73,7 +76,7 @@ class ReplyForm extends Component { render() { const { name, email, message, replyRes, attachment } = this.state; - const { currentBoard, nightMode } = this.props; + const { currentBoard, nightMode, quickReply } = this.props; if (this.props.locked === 1) { return ( <Message negative> @@ -83,7 +86,7 @@ class ReplyForm extends Component { ); } return ( - <Segment inverted={nightMode}> + <Segment inverted={nightMode} basic={quickReply}> {replyRes !== null ? ( replyRes.state === "success" ? ( <Message positive> |