Commit b33ed58c2413cab5cf77812daef46a63f462763a

Authored by Neeraj Sharma
1 parent d2c0f0a3f1

fixed validation in

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
src/pages/Administrator/resetPassword.vue
... ... @@ -111,7 +111,7 @@ export default {
111 111 reset() {
112 112 if (
113 113 this.$refs.form.validate() &&
114   - this.resetPassword.confirmPassword === resetPassword.newPassword
  114 + this.resetPassword.confirmPassword === this.resetPassword.newPassword
115 115 ) {
116 116 this.loading = true;
117 117 this.resetPassword.roleName = this.resetPassword.name;
... ...