Run the rageshake command through the bug report dialog

Ideally we encourage users to give us information like a github issue or options to download their logs.
This commit is contained in:
Travis Ralston 2020-09-09 14:53:38 -06:00
parent 91282e8071
commit 9b5823cccb
2 changed files with 6 additions and 13 deletions

View file

@ -34,7 +34,7 @@ export default class BugReportDialog extends React.Component {
busy: false,
err: null,
issueUrl: "",
text: "",
text: props.initialText || "",
progress: null,
downloadBusy: false,
downloadProgress: null,
@ -255,4 +255,5 @@ export default class BugReportDialog extends React.Component {
BugReportDialog.propTypes = {
onFinished: PropTypes.func.isRequired,
initialText: PropTypes.string,
};