Skip to content

Commit

Permalink
Fix angular pagination demo for compatibility to ng16 for export to C…
Browse files Browse the repository at this point in the history
…SB (#28563)
  • Loading branch information
GoodDayForSurf authored Dec 17, 2024
1 parent 8324c58 commit f2bf726
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,8 @@
class="employees"
[ngClass]="pageSize === 4 ? 'employees--forth' : 'employees--six'"
>
@for (employee of pageEmployees; track employee.ID) {
<employee-card [employee]="employee"></employee-card>
}
<employee-card *ngFor="let employee of pageEmployees" [employee]="employee">
</employee-card>
</div>

<dx-pagination
Expand Down

0 comments on commit f2bf726

Please sign in to comment.