Hide previous errors when clicking accept buttons
This commit is contained in:
parent
02888eb63d
commit
35a4030cc0
|
@ -17,6 +17,7 @@ HBox {
|
|||
buttonCallbacks: ({
|
||||
apply: button => {
|
||||
button.loading = true
|
||||
errorMessage.text = ""
|
||||
|
||||
let args = [
|
||||
nameField.text || null,
|
||||
|
|
|
@ -18,6 +18,7 @@ HBox {
|
|||
buttonCallbacks: ({
|
||||
apply: button => {
|
||||
button.loading = true
|
||||
errorMessage.text = ""
|
||||
|
||||
let args = [roomField.text]
|
||||
|
||||
|
|
|
@ -27,6 +27,8 @@ HPage {
|
|||
|
||||
login: button => {
|
||||
button.loading = true
|
||||
errorMessage.text = ""
|
||||
|
||||
let args = [
|
||||
idField.text, passwordField.text,
|
||||
undefined, serverField.text,
|
||||
|
|
|
@ -36,6 +36,7 @@ BoxPopup {
|
|||
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