Skip to content
Snippets Groups Projects
Commit c5267e9c authored by Hamza HRAMCHI's avatar Hamza HRAMCHI
Browse files

FEAT #15350 TIME 0:02 fix pipes

parent 65b0b162
No related branches found
No related tags found
No related merge requests found
......@@ -91,9 +91,9 @@
 
</ng-container>
<ng-container *ngIf="data.value == 'getCategory'">
<span *ngIf="!'lang.' + data.displayValue | translate" style="opacity: 0.5"
<span *ngIf="!('lang.' + data.displayValue | translate)" style="opacity: 0.5"
title="id: {{data.displayValue}}">{{'lang.undefined' | translate}}</span>
<span *ngIf="'lang.' + data.displayValue | translate"
<span *ngIf="('lang.' + data.displayValue | translate)"
title="{{'lang.' + data.displayValue | translate}}">{{'lang.' + data.displayValue | translate}}</span>
</ng-container>
<ng-container
......
......@@ -149,9 +149,9 @@
&nbsp;
</ng-container>
<ng-container *ngIf="data.value == 'getCategory'">
<span *ngIf="!'lang.' + data.displayValue | translate" style="opacity: 0.5"
<span *ngIf="!('lang.' + data.displayValue | translate)" style="opacity: 0.5"
title="id: {{data.displayValue}}">{{'lang.undefined' | translate}}</span>
<span *ngIf="'lang.' + data.displayValue | translate"
<span *ngIf="('lang.' + data.displayValue | translate)"
title="{{'lang.' + data.displayValue | translate}}">{{'lang.' + data.displayValue | translate}}</span>
</ng-container>
<ng-container
......
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