|
|
@ -10,14 +10,19 @@ |
|
|
|
</button> |
|
|
|
</div> |
|
|
|
|
|
|
|
<table class="gf-table w-100" mat-table matSort [dataSource]="dataSource"> |
|
|
|
<div class="overflow-x-auto"> |
|
|
|
<table class="gf-table w-100" mat-table matSort [dataSource]="dataSource"> |
|
|
|
<ng-container matColumnDef="status"> |
|
|
|
<th |
|
|
|
*matHeaderCellDef |
|
|
|
class="d-none d-lg-table-cell px-1" |
|
|
|
mat-header-cell |
|
|
|
></th> |
|
|
|
<td *matCellDef="let element" class="d-none d-lg-table-cell px-1" mat-cell> |
|
|
|
<td |
|
|
|
*matCellDef="let element" |
|
|
|
class="d-none d-lg-table-cell px-1" |
|
|
|
mat-cell |
|
|
|
> |
|
|
|
<div class="d-flex justify-content-center"> |
|
|
|
<ion-icon *ngIf="element.isExcluded" name="eye-off-outline" /> |
|
|
|
</div> |
|
|
@ -54,7 +59,11 @@ |
|
|
|
> |
|
|
|
<ng-container i18n>Currency</ng-container> |
|
|
|
</th> |
|
|
|
<td *matCellDef="let element" class="d-none d-lg-table-cell px-1" mat-cell> |
|
|
|
<td |
|
|
|
*matCellDef="let element" |
|
|
|
class="d-none d-lg-table-cell px-1" |
|
|
|
mat-cell |
|
|
|
> |
|
|
|
{{ element.currency }} |
|
|
|
</td> |
|
|
|
<td *matFooterCellDef class="d-none d-lg-table-cell px-1" mat-footer-cell> |
|
|
@ -71,7 +80,11 @@ |
|
|
|
> |
|
|
|
<ng-container i18n>Platform</ng-container> |
|
|
|
</th> |
|
|
|
<td *matCellDef="let element" class="d-none d-lg-table-cell px-1" mat-cell> |
|
|
|
<td |
|
|
|
*matCellDef="let element" |
|
|
|
class="d-none d-lg-table-cell px-1" |
|
|
|
mat-cell |
|
|
|
> |
|
|
|
<div class="d-flex"> |
|
|
|
<gf-asset-profile-icon |
|
|
|
*ngIf="element.Platform?.url" |
|
|
@ -218,7 +231,11 @@ |
|
|
|
class="d-none d-lg-table-cell px-1" |
|
|
|
mat-header-cell |
|
|
|
></th> |
|
|
|
<td *matCellDef="let element" class="d-none d-lg-table-cell px-1" mat-cell> |
|
|
|
<td |
|
|
|
*matCellDef="let element" |
|
|
|
class="d-none d-lg-table-cell px-1" |
|
|
|
mat-cell |
|
|
|
> |
|
|
|
<button |
|
|
|
*ngIf="element.comment" |
|
|
|
class="mx-1 no-min-width px-2" |
|
|
@ -283,7 +300,8 @@ |
|
|
|
mat-footer-row |
|
|
|
[ngClass]="{ 'd-none': isLoading || !showFooter }" |
|
|
|
></tr> |
|
|
|
</table> |
|
|
|
</table> |
|
|
|
</div> |
|
|
|
|
|
|
|
<ngx-skeleton-loader |
|
|
|
*ngIf="isLoading" |
|
|
|