Skip to content
Snippets Groups Projects
Commit a4f22a6c authored by Florian Azizian's avatar Florian Azizian
Browse files

FIX #12091 TIME 0:10 mailTracking error in basket list

parent ac7a5997
No related branches found
No related tags found
No related merge requests found
...@@ -303,7 +303,7 @@ export class BasketListComponent implements OnInit { ...@@ -303,7 +303,7 @@ export class BasketListComponent implements OnInit {
Object.keys(element).forEach((key) => { Object.keys(element).forEach((key) => {
if (key == 'statusImage' && element[key] == null) { if (key == 'statusImage' && element[key] == null) {
element[key] = 'fa-question undefined'; element[key] = 'fa-question undefined';
} else if ((element[key] == null || element[key] == '') && ['closingDate', 'countAttachments', 'countNotes', 'display', 'folders', 'hasDocument', 'integrations'].indexOf(key) === -1) { } else if ((element[key] == null || element[key] == '') && ['closingDate', 'countAttachments', 'countNotes', 'display', 'folders', 'hasDocument', 'integrations', 'mailTracking'].indexOf(key) === -1) {
element[key] = this.lang.undefined; element[key] = this.lang.undefined;
} }
}); });
......
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