mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-22 20:40:18 +00:00
fix(@desktop/onboarding):
Allow to click enter when generating a new account and clicking enter Error was: qrc:/onboarding/CreatePasswordModal.qml:53: Error: Insufficient arguments
This commit is contained in:
parent
75c986cc77
commit
92fddb70bc
@ -49,8 +49,8 @@ ModalPopup {
|
||||
//% "Confirm password…"
|
||||
placeholderText: qsTrId("confirm-password…")
|
||||
textField.echoMode: TextInput.Password
|
||||
Keys.onReturnPressed: {
|
||||
submitBtn.clicked()
|
||||
Keys.onReturnPressed: function(event) {
|
||||
submitBtn.clicked(event)
|
||||
}
|
||||
onTextChanged: {
|
||||
[repeatPasswordFieldValid, repeatPasswordValidationError] =
|
||||
|
Loading…
x
Reference in New Issue
Block a user