Browse Source

chore: refactor classes

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

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

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

Loading…
Cancel
Save