mirror of
https://github.com/go-vikunja/vikunja.git
synced 2026-02-01 22:47:40 +00:00
fix(register): explicitely check for username valid === true
This commit is contained in:
@@ -159,7 +159,7 @@ const everythingValid = computed(() => {
|
||||
credentials.email !== '' &&
|
||||
validatePassword(credentials.password) === true &&
|
||||
emailValid.value &&
|
||||
usernameValid.value
|
||||
usernameValid.value === true
|
||||
})
|
||||
|
||||
async function submit() {
|
||||
|
||||
Reference in New Issue
Block a user