2-3 changements d'affichage dans les tableaux

This commit is contained in:
Sébastien André
2020-07-29 14:17:57 +02:00
parent 1e3e728fdd
commit caa7215b71
6 changed files with 34 additions and 27 deletions

View File

@@ -1,6 +1,13 @@
<div class="content">
<div *ngIf="dataSourceTable != null else loading">
<table mat-table [dataSource]="dataSourceTable">
<ng-container matColumnDef="infos">
<th mat-header-cell *matHeaderCellDef></th>
<td mat-cell *matCellDef="let element" style="text-align: left; cursor: pointer;">
<mat-icon aria-hidden="false" aria-label="All informations of the jump">info</mat-icon>
</td>
</ng-container>
<ng-container matColumnDef="id">
<th mat-header-cell *matHeaderCellDef>ID</th>
<td mat-cell *matCellDef="let element">{{element.id}}</td>