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

FIX #12869 TIME 0:05 fix visaCircuit

parent 82842442
No related branches found
No related tags found
No related merge requests found
...@@ -77,7 +77,7 @@ export class LinkedResourceListComponent implements OnInit { ...@@ -77,7 +77,7 @@ export class LinkedResourceListComponent implements OnInit {
Object.keys(linkeRes).forEach((key) => { Object.keys(linkeRes).forEach((key) => {
if (key == 'statusImage' && this.functions.empty(linkeRes[key])) { if (key == 'statusImage' && this.functions.empty(linkeRes[key])) {
linkeRes[key] = 'fa-question undefined'; linkeRes[key] = 'fa-question undefined';
} else if (this.functions.empty(linkeRes[key]) && ['senders', 'recipients', 'attachments', 'hasDocument', 'confidentiality'].indexOf(key) === -1) { } else if (this.functions.empty(linkeRes[key]) && ['senders', 'recipients', 'attachments', 'hasDocument', 'confidentiality', 'visaCircuit'].indexOf(key) === -1) {
linkeRes[key] = this.lang.undefined; linkeRes[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