Skip to content
Snippets Groups Projects
Commit 682a6970 authored by Alex ORLUC's avatar Alex ORLUC
Browse files

fix

parent 34512cf4
No related branches found
No related tags found
No related merge requests found
...@@ -97,7 +97,7 @@ export class ContactsListComponent implements OnInit { ...@@ -97,7 +97,7 @@ export class ContactsListComponent implements OnInit {
...contact, ...contact,
civility: this.contactService.formatCivilityObject(contact.civility), civility: this.contactService.formatCivilityObject(contact.civility),
fillingRate: this.contactService.formatFillingObject(contact.fillingRate), fillingRate: this.contactService.formatFillingObject(contact.fillingRate),
customFields: contact.customFields !== undefined ? this.formatCustomField(contact.customFields) : [], customFields: !this.empty(contact.customFields) ? this.formatCustomField(contact.customFields) : [],
type: 'contact' type: 'contact'
}; };
}), }),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment