var ReportPage = React.createClass({ submitMessage: function() { if (this._messageArea.value) { this.setState({ submitting: true }); lbry.reportBug(this._messageArea.value, () => { this.setState({ submitting: false }); alert("Your bug report has been submitted! Thank you for your feedback."); }); this._messageArea.value = ''; } }, componentDidMount: function() { document.title = "Report an Issue"; }, getInitialState: function() { return { submitting: false, } }, render: function() { return (

Report an Issue

Please describe the problem you experienced and any information you think might be useful to us. Links to screenshots are great!