Fix a typo in reset password logic (#2998)

This commit is contained in:
Tiago Vasconcelos 2025-02-25 11:52:03 +00:00 committed by GitHub
parent 0fc657c55c
commit 5dc1705fa6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

File diff suppressed because one or more lines are too long

View file

@ -583,7 +583,7 @@ window.app.component('username-password', {
}, },
reset() { reset() {
this.$emit('update:resetKey', this.reset_key) this.$emit('update:resetKey', this.reset_key)
this.$emit('update:passeord_1', this.password) this.$emit('update:password_1', this.password)
this.$emit('update:password_2', this.passwordRepeat) this.$emit('update:password_2', this.passwordRepeat)
this.$emit('reset') this.$emit('reset')
}, },