Hide previous errors when clicking accept buttons
This commit is contained in:
parent
02888eb63d
commit
35a4030cc0
|
@ -16,7 +16,8 @@ HBox {
|
|||
|
||||
buttonCallbacks: ({
|
||||
apply: button => {
|
||||
button.loading = true
|
||||
button.loading = true
|
||||
errorMessage.text = ""
|
||||
|
||||
let args = [
|
||||
nameField.text || null,
|
||||
|
|
|
@ -17,7 +17,8 @@ HBox {
|
|||
|
||||
buttonCallbacks: ({
|
||||
apply: button => {
|
||||
button.loading = true
|
||||
button.loading = true
|
||||
errorMessage.text = ""
|
||||
|
||||
let args = [roomField.text]
|
||||
|
||||
|
|
|
@ -26,7 +26,9 @@ HPage {
|
|||
register: button => {},
|
||||
|
||||
login: button => {
|
||||
button.loading = true
|
||||
button.loading = true
|
||||
errorMessage.text = ""
|
||||
|
||||
let args = [
|
||||
idField.text, passwordField.text,
|
||||
undefined, serverField.text,
|
||||
|
@ -35,7 +37,7 @@ HPage {
|
|||
py.callCoro("login_client", args, ([success, data]) => {
|
||||
if (! success) {
|
||||
errorMessage.text = qsTr(data)
|
||||
button.loading = false
|
||||
button.loading = false
|
||||
return
|
||||
}
|
||||
|
||||
|
|
|
@ -33,9 +33,10 @@ BoxPopup {
|
|||
|
||||
box.buttonCallbacks: ({
|
||||
ok: button => {
|
||||
let password = passwordField.text
|
||||
okClicked = true
|
||||
button.loading = true
|
||||
let password = passwordField.text
|
||||
okClicked = true
|
||||
button.loading = true
|
||||
errorMessage.text = ""
|
||||
|
||||
verifyPassword(password, result => {
|
||||
if (result === true) {
|
||||
|
|
Loading…
Reference in New Issue
Block a user