fix(password): watcher (#2097)
Co-authored-by: Dominik Pschenitschni <mail@celement.de> Reviewed-on: https://kolaente.dev/vikunja/frontend/pulls/2097 Reviewed-by: konrad <k@knt.li> Co-authored-by: Dominik Pschenitschni <dpschen@noreply.kolaente.de> Co-committed-by: Dominik Pschenitschni <dpschen@noreply.kolaente.de>
This commit is contained in:
parent
580b012993
commit
4cd6857072
1 changed files with 1 additions and 1 deletions
|
@ -45,7 +45,7 @@ const password = ref('')
|
|||
const isValid = ref(!props.validateInitially)
|
||||
|
||||
watch(
|
||||
props.validateInitially,
|
||||
() => props.validateInitially,
|
||||
() => props.validateInitially && validate(),
|
||||
{immediate: true},
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue