diff --git a/frontend/src/views/Pages/UserProfile/UserCard_FormUserData.vue b/frontend/src/views/Pages/UserProfile/UserCard_FormUserData.vue index 1fa26b5e0..254c0cb9e 100644 --- a/frontend/src/views/Pages/UserProfile/UserCard_FormUserData.vue +++ b/frontend/src/views/Pages/UserProfile/UserCard_FormUserData.vue @@ -68,7 +68,7 @@
+
- + {{ $t('form.save') }}
@@ -132,7 +139,12 @@ export default { this.passwordVisibleOldPwd = !this.passwordVisibleOldPwd }, loadSubmitButton() { - if (this.passwordVisibleNewPwd === this.passwordVisibleNewPwdRepeat) { + if ( + this.password !== '' && + this.passwordNew !== '' && + this.passwordNewRepeat !== '' && + this.passwordNew === this.passwordNewRepeat + ) { this.loading = false } else { this.loading = true