fix(onboarding): Add checking passwords to new password input
Closes: #5834
This commit is contained in:
parent
21fedcbb2b
commit
1f5de11069
|
@ -222,6 +222,9 @@ Column {
|
|||
|
||||
// Update strength indicator:
|
||||
strengthInditactor.strength = d.convertStrength(RootStore.getPasswordStrengthScore(newPswInput.text, root.onboarding))
|
||||
if (textField.text.length === confirmPswInput.text.length) {
|
||||
root.checkPasswordMatches(false)
|
||||
}
|
||||
}
|
||||
Keys.onReturnPressed: { root.returnPressed() }
|
||||
|
||||
|
|
Loading…
Reference in New Issue