From bf45cb05880f0da6f56ba08cf43bb026dfffd0f3 Mon Sep 17 00:00:00 2001
From: David Baker
Date: Fri, 26 Jun 2020 11:24:07 +0100
Subject: [PATCH] PR feedback: re-order CSS & add underscore
---
.../views/elements/_StyledRadioButton.scss | 3 +--
.../CreateSecretStorageDialog.js | 20 +++++++++----------
2 files changed, 11 insertions(+), 12 deletions(-)
diff --git a/res/css/views/elements/_StyledRadioButton.scss b/res/css/views/elements/_StyledRadioButton.scss
index eb73cec5b5..17a063593f 100644
--- a/res/css/views/elements/_StyledRadioButton.scss
+++ b/res/css/views/elements/_StyledRadioButton.scss
@@ -35,11 +35,10 @@ limitations under the License.
flex-grow: 1;
display: flex;
+ flex-direction: column;
margin-left: 8px;
margin-right: 8px;
-
- flex-direction: column;
}
.mx_RadioButton_spacer {
diff --git a/src/async-components/views/dialogs/secretstorage/CreateSecretStorageDialog.js b/src/async-components/views/dialogs/secretstorage/CreateSecretStorageDialog.js
index b4b99f2205..bd751f7e74 100644
--- a/src/async-components/views/dialogs/secretstorage/CreateSecretStorageDialog.js
+++ b/src/async-components/views/dialogs/secretstorage/CreateSecretStorageDialog.js
@@ -44,8 +44,8 @@ const PHASE_CONFIRM_SKIP = 10;
const PASSWORD_MIN_SCORE = 4; // So secure, many characters, much complex, wow, etc, etc.
// these end up as strings from being values in the radio buttons, so just use strings
-const CREATESTORAGE_OPTION_KEY = 'key';
-const CREATESTORAGE_OPTION_PASSPHRASE = 'passphrase';
+const CREATE_STORAGE_OPTION_KEY = 'key';
+const CREATE_STORAGE_OPTION_PASSPHRASE = 'passphrase';
/*
* Walks the user through the process of creating a passphrase to guard Secure
@@ -86,7 +86,7 @@ export default class CreateSecretStorageDialog extends React.PureComponent {
accountPassword: props.accountPassword || "",
accountPasswordCorrect: null,
- passPhraseKeySelected: CREATESTORAGE_OPTION_KEY,
+ passPhraseKeySelected: CREATE_STORAGE_OPTION_KEY,
};
this._passphraseField = createRef();
@@ -171,7 +171,7 @@ export default class CreateSecretStorageDialog extends React.PureComponent {
}
_onChooseKeyPassphraseFormSubmit = async () => {
- if (this.state.passPhraseKeySelected === CREATESTORAGE_OPTION_KEY) {
+ if (this.state.passPhraseKeySelected === CREATE_STORAGE_OPTION_KEY) {
this._recoveryKey =
await MatrixClientPeg.get().createRecoveryKeyFromPassphrase();
this.setState({
@@ -440,10 +440,10 @@ export default class CreateSecretStorageDialog extends React.PureComponent {
)}
![]()
{_t("We’ll generate a Security Key for you to store somewhere safe, like a password manager or a safe.")}