Skip to content

Commit 0b49b33

Browse files
authored
Merge pull request #3030 from input-output-hk/fix/ddw-1130-blank-screen-when-opening-itn-rewards
[DDW-1130] Fix blank screen when opening ITN rewards
2 parents 3d07522 + f5160d7 commit 0b49b33

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88

99
### Fixes
1010

11+
- Fixed blank screen when opening ITN rewards ([PR 3030](https://github.com/input-output-hk/daedalus/pull/3030))
1112
- Ensured non-recommended decimal place setting alert is correctly shown ([PR 3007](https://github.com/input-output-hk/daedalus/pull/3007))
1213
- Disabled the possibility to choose a syncing wallet for ITN rewards and delegation ([PR 3015](https://github.com/input-output-hk/daedalus/pull/3015))
1314

source/renderer/app/components/staking/redeem-itn-rewards/Step1ConfigurationDialog.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -358,7 +358,7 @@ class Step1ConfigurationDialog extends Component<Props, State> {
358358
<div className={styles.recoveryPhrase}>
359359
<MnemonicInput
360360
{...mnemonicInputProps}
361-
label={intl.formatMessage(messages.recoveryPhraseInputLabel)}
361+
label={intl.formatMessage(messages.recoveryPhraseInputHint)}
362362
availableWords={suggestedMnemonics}
363363
wordCount={ITN_WALLET_RECOVERY_PHRASE_WORD_COUNT}
364364
error={recoveryPhraseField.error}

source/renderer/app/components/widgets/DialogFullSizeOverride.scss

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@
2222
.SimpleInput_input:not(.SimpleInput_disabled),
2323
.SimpleInput_input:focus:not(.SimpleInput_disabled),
2424
.SimpleInput_input:hover:not(.SimpleInput_disabled),
25-
.SimpleLink_root {
25+
.SimpleLink_root,
26+
.MnemonicInput_content {
2627
background-color: transparent !important;
2728
}
2829

@@ -94,7 +95,10 @@
9495
.SimpleInput_input,
9596
.SimpleInput_input::placeholder,
9697
.SimpleInput_input:focus,
97-
.SimpleInput_input:hover {
98+
.SimpleInput_input:hover,
99+
.MnemonicInput_headerSlot,
100+
.MnemonicAutocompleteLayout_inputLabel,
101+
.MnemonicAutocompleteLayout_root {
98102
color: var(--theme-dialog-fullsize-text-color);
99103
}
100104

@@ -112,7 +116,8 @@
112116
.SimpleInput_input:not(.SimpleInput_disabled),
113117
.SimpleInput_input:focus:not(.SimpleInput_errored),
114118
.SimpleInput_input:hover:not(.SimpleInput_errored),
115-
.SimpleOptions_option:after {
119+
.SimpleOptions_option:after,
120+
.MnemonicAutocompleteLayout_input {
116121
background-color: transparent !important;
117122
border-color: var(--theme-dialog-fullsize-text-color) !important;
118123
}

0 commit comments

Comments
 (0)