File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
libs/schematic/generators/ng-generate/components/shared/methods/generation Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change 55 matSort
66 matSortDisableClear="true"
77 [matSortDisabled]="dragging"
8+ [trackBy]="trackBy"
89 (matSortChange)="sortData()"
910 [matSortActive]="columnToSort.sortColumnName" [matSortDirection]="columnToSort.sortDirection"
1011 [ngClass]="customTableClass"
Original file line number Diff line number Diff line change 66 <button mat-raised-button color="warn" [disabled]="selection.selected.length === -1" (click)="deleteRow()">Delete</button>
77 </div>
88
9- <table mat-table class="full-width-table" [dataSource]="dataSource" aria-label="Elements" data-test="table">
9+ <table mat-table class="full-width-table" [dataSource]="dataSource" [trackBy]="trackBy" aria-label="Elements" data-test="table">
1010 <!-- Row shown when there is no matching data that will be provided to the wrapper table. -->
1111 <tr data-test="no-data-table-row" class="mat-row" *matNoDataRow>
1212 <td *ngIf="!dataSource.data.length" class="mat-cell" [colSpan]="displayedColumns.length" data-test="no-data-table-cell">
You can’t perform that action at this time.
0 commit comments