Skip to content

Commit

Permalink
ZETA-6941: Fix remaining unit test.
Browse files Browse the repository at this point in the history
  • Loading branch information
CharlieGreenman committed Oct 20, 2023
1 parent efa8a8d commit e0d3392
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/rz/angular/snapshots/data-table-output.component.html.snap
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
<ng-container>
<!-- Filter -->
<ng-container *ngif="isFilterable" [matcolumndef]="this.rowActionIcon">
<ng-container *ngIf="isFilterable" [matcolumndef]="this.rowActionIcon">
<mat-form-field>
<mat-label>Filter</mat-label>
<input matinput="" (keyup)="searchTable($event)" placeholder="filter" />
</mat-form-field>
</ng-container>

<!-- Table -->
<ng-container *ngif="rowActionIcon?.length" [matcolumndef]="rowActionIcon">
<ng-container *ngIf="rowActionIcon?.length" [matcolumndef]="rowActionIcon">
</ng-container
><ng-container
*ngfor="let tableColumn of tableColumns"
*ngFor="let tableColumn of tableColumns"
[matcolumndef]="tableColumn.name"
>
<!-- if sortable column header -->
<ng-container *ngif="tableColumn.isSortable; else notSortable">
<ng-container *ngIf="tableColumn.isSortable; else notSortable">
</ng-container></ng-container
><ng-template #notsortable=""> </ng-template>
<table mat-table="" [datasource]="tableDataSource" matSort>
Expand Down Expand Up @@ -66,7 +66,7 @@
</tbody>
</table>
<mat-paginator
*ngif="isPageable"
*ngIf="isPageable"
[pagesizeoptions]="paginationSizes"
[pagesize]="defaultPageSize"
(page)="paginateTable($event)"
Expand Down

0 comments on commit e0d3392

Please sign in to comment.