Merge branch 'main' into feature/show-namespace-when-searching

This commit is contained in:
kolaente 2021-11-02 19:57:18 +01:00
commit 5ae4809a44
Signed by untrusted user: konrad
GPG Key ID: F40E70337AB24C9B
2 changed files with 1 additions and 3 deletions

View File

@ -14,6 +14,6 @@ export default {
reload() {
window.location.reload()
},
}
},
}
</script>

View File

@ -131,12 +131,10 @@ export default {
}),
methods: {
async submit() {
this.$store.commit(LOADING, true)
this.errorMessage = ''
if (this.credentials.password2 !== this.credentials.password) {
this.errorMessage = this.$t('user.auth.passwordsDontMatch')
this.$store.commit(LOADING, false)
return
}