1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-20 16:22:28 +03:00
'focus' attribute was on the wrong thing
This commit is contained in:
David Baker
2018-01-12 10:52:51 +00:00
parent aa5d42d045
commit 99a72b5b2b

View File

@@ -62,7 +62,6 @@ export default React.createClass({
<BaseDialog className="mx_QuestionDialog" onFinished={this.props.onFinished} <BaseDialog className="mx_QuestionDialog" onFinished={this.props.onFinished}
onEnterPressed={this.onOk} onEnterPressed={this.onOk}
title={this.props.title} title={this.props.title}
focus={this.props.focus}
> >
<div className="mx_Dialog_content"> <div className="mx_Dialog_content">
{ this.props.description } { this.props.description }
@@ -70,6 +69,7 @@ export default React.createClass({
<DialogButtons primaryButton={this.props.button || _t('OK')} <DialogButtons primaryButton={this.props.button || _t('OK')}
onPrimaryButtonClick={this.onOk} onPrimaryButtonClick={this.onOk}
primaryButtonClass={primaryButtonClass} primaryButtonClass={primaryButtonClass}
focus={this.props.focus}
onCancel={this.onCancel} onCancel={this.onCancel}
> >
{ this.props.extraButtons } { this.props.extraButtons }