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

FIX #16304 TIME 0:10 rm unless code

parent cf4c2820
No related branches found
No related tags found
No related merge requests found
...@@ -86,12 +86,6 @@ ...@@ -86,12 +86,6 @@
[innerHTML]="data.displayValue.processLimitDate | timeLimit" [innerHTML]="data.displayValue.processLimitDate | timeLimit"
title='{{data.displayValue.processLimitDate | fullDate}}'></span> title='{{data.displayValue.processLimitDate | fullDate}}'></span>
</ng-container> </ng-container>
<ng-container *ngIf="data.value === 'getCreationDate'">
<i class="fa {{data.icon}}"
title="{{'lang.getCreationDate' | translate}}"></i>&nbsp;<span
[innerHTML]="data.displayValue | timeAgo" style="margin-left: 3px;"
title='{{data.displayValue | fullDate}}'></span>
</ng-container>
<ng-container *ngIf="data.value === 'getProcessLimitDate'"> <ng-container *ngIf="data.value === 'getProcessLimitDate'">
<i class="fa {{data.icon}}" <i class="fa {{data.icon}}"
title="{{'lang.getProcessLimitDate' | translate}}"></i>&nbsp;<span title="{{'lang.getProcessLimitDate' | translate}}"></i>&nbsp;<span
...@@ -101,7 +95,7 @@ ...@@ -101,7 +95,7 @@
</ng-container> </ng-container>
</ng-container> </ng-container>
<ng-container *ngIf="data.icon != '' && ['getCreationDate', 'getProcessLimitDate'].indexOf(data.value) === -1"> <ng-container *ngIf="data.icon != '' && data.value !== 'getProcessLimitDate'">
<i class="fa {{data.icon}}" title="{{data.label}}"></i> <i class="fa {{data.icon}}" title="{{data.label}}"></i>
&nbsp; &nbsp;
</ng-container> </ng-container>
...@@ -112,7 +106,7 @@ ...@@ -112,7 +106,7 @@
title="{{'lang.' + data.displayValue | translate}}">{{'lang.' + data.displayValue | translate}}</span> title="{{'lang.' + data.displayValue | translate}}">{{'lang.' + data.displayValue | translate}}</span>
</ng-container> </ng-container>
<ng-container <ng-container
*ngIf="data.value != 'getCategory' && data.value != 'getCreationDate' && data.value !== 'getProcessLimitDate' && data.value !== 'getCreationAndProcessLimitDates'"> *ngIf="data.value != 'getCategory' && data.value !== 'getProcessLimitDate' && data.value !== 'getCreationAndProcessLimitDates'">
<span *ngIf="!data.value.includes('Date')" title="{{data.displayTitle}}" <span *ngIf="!data.value.includes('Date')" title="{{data.displayTitle}}"
[innerHTML]="data.displayValue"></span> [innerHTML]="data.displayValue"></span>
<span *ngIf="data.value.includes('Date')" <span *ngIf="data.value.includes('Date')"
......
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