Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | 20x 20x 20x 20x 20x | <ag-grid-angular [class.ag-theme-quartz]="!store.darkTheme"
[class.ag-theme-quartz-dark]="store.darkTheme"
theme="legacy"
[style.height.vh]="90"
[rowData]="page?.content"
[columnDefs]="columnDefs"></ag-grid-angular>
@if (page) {
@if (emptyMessage && !page.content.length) {
<p class="no-results">{{ emptyMessage }}</p>
} @else if (pageControls) {
<app-page-controls [page]="page"
[defaultCols]="cols"></app-page-controls>
}
} @else {
<app-loading></app-loading>
}
|