Review comments

pull/21833/head
Kegan Dougal 2017-01-24 15:51:53 +00:00
parent 3b9a112136
commit 5991172182
1 changed files with 6 additions and 4 deletions

View File

@ -1,5 +1,5 @@
/* /*
Copyright 2016 OpenMarket Ltd Copyright 2017 OpenMarket Ltd
Licensed under the Apache License, Version 2.0 (the "License"); Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License. you may not use this file except in compliance with the License.
@ -41,7 +41,7 @@ export default class BugReportDialog extends React.Component {
const userText = this.state.text; const userText = this.state.text;
if (!sendLogs && userText.trim().length === 0) { if (!sendLogs && userText.trim().length === 0) {
this.setState({ this.setState({
err: "Please describe the bug and/or send logs." err: "Please describe the bug and/or send logs.",
}); });
return; return;
} }
@ -85,7 +85,8 @@ export default class BugReportDialog extends React.Component {
Report a bug Report a bug
</div> </div>
<div className="mx_Dialog_content"> <div className="mx_Dialog_content">
<p>Please describe the bug. What did you do? What did you expect to happen? <p>Please describe the bug. What did you do?
What did you expect to happen?
What actually happened?</p> What actually happened?</p>
<textarea <textarea
className="mx_BugReportDialog_input" className="mx_BugReportDialog_input"
@ -94,7 +95,8 @@ export default class BugReportDialog extends React.Component {
value={this.state.text} value={this.state.text}
placeholder="Describe your problem here." placeholder="Describe your problem here."
/> />
<p>In order to diagnose problems, logs from this client will be sent with this bug report. <p>In order to diagnose problems, logs from this client will be sent with
this bug report.
If you would prefer to only send the text above, please untick:</p> If you would prefer to only send the text above, please untick:</p>
<input type="checkbox" checked={this.state.sendLogs} <input type="checkbox" checked={this.state.sendLogs}
onChange={this._onSendLogsChange} id="mx_BugReportDialog_logs"/> onChange={this._onSendLogsChange} id="mx_BugReportDialog_logs"/>