mirror of https://github.com/vector-im/riot-web
Use DialogButtons in SessionRestoreErrorDialog
Use DialogButtons to eliminate duplicate button code.pull/21833/head
parent
93b789438b
commit
a11146f39d
|
@ -40,6 +40,7 @@ export default React.createClass({
|
||||||
|
|
||||||
render: function() {
|
render: function() {
|
||||||
const BaseDialog = sdk.getComponent('views.dialogs.BaseDialog');
|
const BaseDialog = sdk.getComponent('views.dialogs.BaseDialog');
|
||||||
|
const DialogButtons = sdk.getComponent('views.elements.DialogButtons');
|
||||||
let bugreport;
|
let bugreport;
|
||||||
|
|
||||||
if (SdkConfig.get().bug_report_endpoint_url) {
|
if (SdkConfig.get().bug_report_endpoint_url) {
|
||||||
|
@ -68,11 +69,9 @@ export default React.createClass({
|
||||||
|
|
||||||
{ bugreport }
|
{ bugreport }
|
||||||
</div>
|
</div>
|
||||||
<div className="mx_Dialog_buttons">
|
<DialogButtons primaryButton={_t("Continue anyway")}
|
||||||
<button className="mx_Dialog_primary" onClick={this._continueClicked}>
|
onPrimaryButtonClick={this._continueClicked}
|
||||||
{ _t("Continue anyway") }
|
onCancel={this.props.onFinished} />
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
</BaseDialog>
|
</BaseDialog>
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue