Browse Source

chore: refactor classes

pull/2466/head
Dhoni77 2 years ago
parent
commit
3751fc63f7
  1. 26
      libs/ui/src/lib/benchmark/benchmark.component.html

26
libs/ui/src/lib/benchmark/benchmark.component.html

@ -9,25 +9,19 @@
<ng-container matColumnDef="date">
<th
*matHeaderCellDef
class="d-none d-lg-table-cell text-right"
class="d-none d-lg-table-cell justify-content-end px-1"
mat-header-cell
>
<span class="d-none d-sm-block text-nowrap" i18n>Last All Time High</span>
<span i18n>Last All Time High</span>
</th>
<td
*matCellDef="let element"
class="d-none d-lg-table-cell text-right"
mat-cell
>
<gf-value
class="d-inline-block justify-content-end text-primary"
[isDate]="true"
[locale]="locale"
[value]="
element?.performances?.allTimeHigh?.date
| date: 'dd.MM.yyyy' ?? undefined
"
></gf-value>
<td *matCellDef="let element" class="d-none d-lg-table-cell px-1" mat-cell>
<div class="d-flex justify-content-end">
<gf-value
[isDate]="true"
[locale]="locale"
[value]="element?.performances?.allTimeHigh?.date ?? undefined"
></gf-value>
</div>
</td>
</ng-container>

Loading…
Cancel
Save