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, {});
},