import React from 'react'; import Link from 'component/link'; import Modal from '../component/modal.js'; import lbry from '../lbry.js'; var ReportPage = React.createClass({ submitMessage: function() { if (this._messageArea.value) { this.setState({ submitting: true }); lbry.reportBug(this._messageArea.value, () => { this.setState({ submitting: false, modal: 'submitted', }); }); this._messageArea.value = ''; } }, closeModal: function() { this.setState({ modal: null, }) }, getInitialState: function() { return { submitting: false, modal: null, } }, 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!