Commit 909019138a6d171551a25bd2132aa334d97e9eff

Authored by Igor Kulikov
1 parent 2788623b

UI: Improve entity table

... ... @@ -220,7 +220,8 @@
220 220 </mat-cell>
221 221 </ng-container>
222 222 <mat-header-row [ngClass]="{'mat-row-select': selectionEnabled}" *matHeaderRowDef="displayedColumns; sticky: true"></mat-header-row>
223   - <mat-row [ngClass]="{'mat-row-select': selectionEnabled,
  223 + <mat-row [fxShow]="!dataSource.dataLoading"
  224 + [ngClass]="{'mat-row-select': selectionEnabled,
224 225 'mat-selected': dataSource.selection.isSelected(entity),
225 226 'tb-current-entity': dataSource.isCurrentEntity(entity)}"
226 227 *matRowDef="let entity; columns: displayedColumns;" (click)="onRowClick($event, entity)"></mat-row>
... ...