make autofocus explicit on errordialog as it autoFocus attr seems unreliable

pull/21833/head
Matthew Hodgson 2017-04-22 17:28:48 +01:00
parent 0e5006b041
commit 34c1a8f3cf
1 changed files with 7 additions and 1 deletions

View File

@ -50,6 +50,12 @@ export default React.createClass({
};
},
componentDidMount: function() {
if (this.props.focus) {
this.refs.button.focus();
}
},
render: function() {
const BaseDialog = sdk.getComponent('views.dialogs.BaseDialog');
return (
@ -59,7 +65,7 @@ export default React.createClass({
{this.props.description}
</div>
<div className="mx_Dialog_buttons">
<button className="mx_Dialog_primary" onClick={this.props.onFinished} autoFocus={this.props.focus}>
<button ref="button" className="mx_Dialog_primary" onClick={this.props.onFinished}>
{this.props.button}
</button>
</div>