DisableEventIndexDialog: Properly indent the content of the BaseDialog.
This commit is contained in:
parent
b59863781f
commit
72a58d0c2c
1 changed files with 10 additions and 10 deletions
|
@ -60,16 +60,16 @@ export default class DisableEventIndexDialog extends React.Component {
|
||||||
onFinished={this.props.onFinished}
|
onFinished={this.props.onFinished}
|
||||||
title={_t("Are you sure?")}
|
title={_t("Are you sure?")}
|
||||||
>
|
>
|
||||||
{_t("If disabled, messages from encrypted rooms won't appear in search results.")}
|
{_t("If disabled, messages from encrypted rooms won't appear in search results.")}
|
||||||
<div className="mx_Dialog_buttons">
|
<div className="mx_Dialog_buttons">
|
||||||
<AccessibleButton kind="secondary" onClick={this.props.onFinished}>
|
<AccessibleButton kind="secondary" onClick={this.props.onFinished}>
|
||||||
{_t("Cancel")}
|
{_t("Cancel")}
|
||||||
</AccessibleButton>
|
</AccessibleButton>
|
||||||
<AccessibleButton kind="danger" disabled={this.state.disabling} onClick={this._onDisable}>
|
<AccessibleButton kind="danger" disabled={this.state.disabling} onClick={this._onDisable}>
|
||||||
{_t("Disable")}
|
{_t("Disable")}
|
||||||
</AccessibleButton>
|
</AccessibleButton>
|
||||||
{this.state.enabling ? <InlineSpinner /> : <div />}
|
{this.state.enabling ? <InlineSpinner /> : <div />}
|
||||||
</div>
|
</div>
|
||||||
</BaseDialog>
|
</BaseDialog>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue