Skip to content

Commit

Permalink
fix(admin-ui): Fix error when data table filters not defined
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelbromley committed Sep 1, 2023
1 parent 15d1ff2 commit 2425a33
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@
<ng-content select="vdr-bulk-action-menu"></ng-content>
</div>
<div class="table-wrapper">
<vdr-data-table-filter-presets [filters]="filters" [dataTableId]="id"></vdr-data-table-filter-presets>
<vdr-data-table-filter-presets
*ngIf="filters"
[filters]="filters"
[dataTableId]="id"
></vdr-data-table-filter-presets>
<table class="" [class.no-select]="disableSelect">
<thead [class.items-selected]="selectionManager?.selection.length">
<tr class="heading-row">
Expand Down

0 comments on commit 2425a33

Please sign in to comment.