We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 377eb1b commit 5476267Copy full SHA for 5476267
src/app/edit/edit.component.ts
@@ -56,7 +56,7 @@ export class EditComponent implements OnInit {
56
57
if(this.isName && this.isPhoneNum && this.isAddr && this.isEmail && this.isBir){
58
if(this.isAdd) this.addContact();
59
- else this.editeContact();
+ else this.editContact();
60
}
61
62
getContacts() {
@@ -95,7 +95,7 @@ export class EditComponent implements OnInit {
95
this._router.navigate(['']);
96
97
98
- editeContact() {
+ editContact() {
99
let edit_contact = {
100
"id": this.editId,
101
"name": this.contact.name,
0 commit comments