You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-11-07 10:46:24 +03:00
undo change
This commit is contained in:
@@ -367,14 +367,14 @@ export default class SecureBackupPanel extends React.PureComponent {
|
|||||||
</>;
|
</>;
|
||||||
|
|
||||||
actions.push(
|
actions.push(
|
||||||
<AccessibleButton kind="primary" onClick={this._restoreBackup} key="restoreButton">
|
<AccessibleButton kind="primary" onClick={this._restoreBackup}>
|
||||||
{restoreButtonCaption}
|
{restoreButtonCaption}
|
||||||
</AccessibleButton>,
|
</AccessibleButton>,
|
||||||
);
|
);
|
||||||
|
|
||||||
if (!isSecureBackupRequired()) {
|
if (!isSecureBackupRequired()) {
|
||||||
actions.push(
|
actions.push(
|
||||||
<AccessibleButton kind="danger" onClick={this._deleteBackup} key="deleteButton">
|
<AccessibleButton kind="danger" onClick={this._deleteBackup}>
|
||||||
{_t("Delete Backup")}
|
{_t("Delete Backup")}
|
||||||
</AccessibleButton>,
|
</AccessibleButton>,
|
||||||
);
|
);
|
||||||
@@ -388,7 +388,7 @@ export default class SecureBackupPanel extends React.PureComponent {
|
|||||||
<p>{_t("Back up your keys before signing out to avoid losing them.")}</p>
|
<p>{_t("Back up your keys before signing out to avoid losing them.")}</p>
|
||||||
</>;
|
</>;
|
||||||
actions.push(
|
actions.push(
|
||||||
<AccessibleButton kind="primary" onClick={this._startNewBackup} key="setupButton">
|
<AccessibleButton kind="primary" onClick={this._startNewBackup}>
|
||||||
{_t("Set up")}
|
{_t("Set up")}
|
||||||
</AccessibleButton>,
|
</AccessibleButton>,
|
||||||
);
|
);
|
||||||
@@ -396,7 +396,7 @@ export default class SecureBackupPanel extends React.PureComponent {
|
|||||||
|
|
||||||
if (secretStorageKeyInAccount) {
|
if (secretStorageKeyInAccount) {
|
||||||
actions.push(
|
actions.push(
|
||||||
<AccessibleButton kind="danger" onClick={this._resetSecretStorage} key="resetButton">
|
<AccessibleButton kind="danger" onClick={this._resetSecretStorage}>
|
||||||
{_t("Reset")}
|
{_t("Reset")}
|
||||||
</AccessibleButton>,
|
</AccessibleButton>,
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user