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

FEAT #13267 TIME 0:10 fix custom field label sub info

parent 0e6fddb1
No related branches found
No related tags found
No related merge requests found
......@@ -395,7 +395,7 @@ export class BasketListComponent implements OnInit, OnDestroy {
key.displayValue = key.displayValue + ' ' + this.translate.instant('lang.opinionsSent');
}
}
key.label = this.translate.instant('lang.' + key.value);
key.label = key.displayLabel === undefined ? this.translate.instant('lang.' + key.value) : key.displayLabel;
});
if (this.selectedRes.indexOf(element['resId']) === -1) {
......
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