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

FIX #11720 TIME 0:05 fix js error

parent c132b8d1
No related branches found
No related tags found
No related merge requests found
...@@ -209,8 +209,10 @@ export class ContactExportComponent implements OnInit { ...@@ -209,8 +209,10 @@ export class ContactExportComponent implements OnInit {
} }
setConfiguration() { setConfiguration() {
JSON.parse(this.localStorage.get('exportContactFields')).data.forEach((element: any) => { if (this.localStorage.get('exportContactFields') !== null) {
this.addData(element); JSON.parse(this.localStorage.get('exportContactFields')).data.forEach((element: any) => {
}); this.addData(element);
});
}
} }
} }
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