1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-11 20:22:36 +03:00

Merge pull request #5189 from matrix-org/travis/rageshake-fix

Run the rageshake command through the bug report dialog
This commit is contained in:
Travis Ralston
2020-09-09 15:08:43 -06:00
committed by GitHub
3 changed files with 8 additions and 15 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,
};