mirror of
https://github.com/thelounge/thelounge
synced 2024-11-27 06:20:26 +00:00
Merge pull request #3662 from thelounge/xpaw/fix-ref
Check that usernameInput ref exists
This commit is contained in:
commit
e0cd9cbcdf
1 changed files with 5 additions and 0 deletions
|
@ -187,6 +187,11 @@ export default {
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
onNickChanged(event) {
|
onNickChanged(event) {
|
||||||
|
// Username input is not available when useHexIp is set
|
||||||
|
if (!this.$refs.usernameInput) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if (
|
if (
|
||||||
!this.$refs.usernameInput.value ||
|
!this.$refs.usernameInput.value ||
|
||||||
this.$refs.usernameInput.value === this.previousUsername
|
this.$refs.usernameInput.value === this.previousUsername
|
||||||
|
|
Loading…
Reference in a new issue