remove unused files and refactor variable names and function names

This commit is contained in:
Mohit Panjwani
2019-11-15 21:02:53 +05:30
parent 9a3e52b658
commit 5d70832f20
43 changed files with 182108 additions and 1664 deletions

View File

@ -145,7 +145,7 @@ export default {
name: this.formData.name,
email: this.formData.email
}
if (this.formData.password != null && this.formData.password != undefined && this.formData.password != '') {
if (this.formData.password != null && this.formData.password !== undefined && this.formData.password !== '') {
data = { ...data, password: this.formData.password }
}
let response = await this.editUser(data)