You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-11-04 11:51:45 +03:00
DisableEventIndexDialog: Properly indent the content of the BaseDialog.
This commit is contained in:
@@ -60,16 +60,16 @@ export default class DisableEventIndexDialog extends React.Component {
|
||||
onFinished={this.props.onFinished}
|
||||
title={_t("Are you sure?")}
|
||||
>
|
||||
{_t("If disabled, messages from encrypted rooms won't appear in search results.")}
|
||||
<div className="mx_Dialog_buttons">
|
||||
<AccessibleButton kind="secondary" onClick={this.props.onFinished}>
|
||||
{_t("Cancel")}
|
||||
</AccessibleButton>
|
||||
<AccessibleButton kind="danger" disabled={this.state.disabling} onClick={this._onDisable}>
|
||||
{_t("Disable")}
|
||||
</AccessibleButton>
|
||||
{this.state.enabling ? <InlineSpinner /> : <div />}
|
||||
</div>
|
||||
{_t("If disabled, messages from encrypted rooms won't appear in search results.")}
|
||||
<div className="mx_Dialog_buttons">
|
||||
<AccessibleButton kind="secondary" onClick={this.props.onFinished}>
|
||||
{_t("Cancel")}
|
||||
</AccessibleButton>
|
||||
<AccessibleButton kind="danger" disabled={this.state.disabling} onClick={this._onDisable}>
|
||||
{_t("Disable")}
|
||||
</AccessibleButton>
|
||||
{this.state.enabling ? <InlineSpinner /> : <div />}
|
||||
</div>
|
||||
</BaseDialog>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user