1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-15 07:43:35 +00:00

PM-2630 virtual scroll on tables (#13725)

Tested by QA and passed.
This commit is contained in:
Vijay Oommen
2025-03-10 14:52:52 -05:00
committed by GitHub
parent f682870e41
commit a877450e0a
4 changed files with 186 additions and 198 deletions

View File

@@ -12,7 +12,7 @@
</tr>
</thead>
<tbody>
<tr *cdkVirtualFor="let r of rows$; trackBy: trackBy" bitRow>
<tr *cdkVirtualFor="let r of rows$; trackBy: trackBy; templateCacheSize: 0" bitRow>
<ng-container *ngTemplateOutlet="rowDef.template; context: { $implicit: r }"></ng-container>
</tr>
</tbody>