mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-18 22:33:50 +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,
|
||||
cipher: pwd
|
||||
}).then(() => {
|
||||
this.loginForm.username =
|
||||
'';
|
||||
this.loginForm.password =
|
||||
'';
|
||||
this.loginForm.endpoint =
|
||||
'';
|
||||
this.loginForm.websocket =
|
||||
'';
|
||||
this.$refs.loginForm.resetFields();
|
||||
});
|
||||
});
|
||||
});
|
||||
@@ -399,10 +392,7 @@ export default class extends baseClass {
|
||||
saveCredentials: this.loginForm.saveCredentials
|
||||
})
|
||||
.then(() => {
|
||||
this.loginForm.username = '';
|
||||
this.loginForm.password = '';
|
||||
this.loginForm.endpoint = '';
|
||||
this.loginForm.websocket = '';
|
||||
this.$refs.loginForm.resetFields();
|
||||
})
|
||||
.finally(() => {
|
||||
this.loginForm.loading = false;
|
||||
|
||||
Reference in New Issue
Block a user