|
|
@ -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> |
|
|
|
|
|
|
|