1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-08 21:42:24 +03:00

Move BugReportDialog to riot-web

This commit is contained in:
Kegan Dougal
2017-01-25 16:33:00 +00:00
parent e5fde759e6
commit bea6df88e0
2 changed files with 3 additions and 124 deletions

View File

@@ -391,6 +391,9 @@ module.exports = React.createClass({
_onBugReportClicked: function() {
const BugReportDialog = sdk.getComponent("dialogs.BugReportDialog");
if (!BugReportDialog) {
return;
}
Modal.createDialog(BugReportDialog, {});
},