All files / app/component/grid grid.component.html

50% Statements 7/14
33.33% Branches 2/6
100% Functions 0/0
62.5% Lines 5/8

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 1720x     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>
}