mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-05-07 14:56:06 +02:00
Fix character input prompt on login button click (#1007)
This commit is contained in:
@@ -374,14 +374,7 @@ export default class extends baseClass {
|
|||||||
.saveCredentials,
|
.saveCredentials,
|
||||||
cipher: pwd
|
cipher: pwd
|
||||||
}).then(() => {
|
}).then(() => {
|
||||||
this.loginForm.username =
|
this.$refs.loginForm.resetFields();
|
||||||
'';
|
|
||||||
this.loginForm.password =
|
|
||||||
'';
|
|
||||||
this.loginForm.endpoint =
|
|
||||||
'';
|
|
||||||
this.loginForm.websocket =
|
|
||||||
'';
|
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
@@ -399,10 +392,7 @@ export default class extends baseClass {
|
|||||||
saveCredentials: this.loginForm.saveCredentials
|
saveCredentials: this.loginForm.saveCredentials
|
||||||
})
|
})
|
||||||
.then(() => {
|
.then(() => {
|
||||||
this.loginForm.username = '';
|
this.$refs.loginForm.resetFields();
|
||||||
this.loginForm.password = '';
|
|
||||||
this.loginForm.endpoint = '';
|
|
||||||
this.loginForm.websocket = '';
|
|
||||||
})
|
})
|
||||||
.finally(() => {
|
.finally(() => {
|
||||||
this.loginForm.loading = false;
|
this.loginForm.loading = false;
|
||||||
|
|||||||
Reference in New Issue
Block a user