Skip to content

Commit c9e71de

Browse files
Loic-frLoïc BURELOUX
andauthored
Fix bug where filter complex would not appear if not in calc mode (#234)
Co-authored-by: Loïc BURELOUX <[email protected]>
1 parent 2377f56 commit c9e71de

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

Angular/src/app/features/planes-specific/views/planes-index/planes-index.component.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,9 @@
4949
? virtualCrudItems
5050
: ((crudItems$ | async) ?? [])
5151
"
52+
[dictOptionDtos]="
53+
(planeService.optionsService.dictOptionDtos$ | async) ?? []
54+
"
5255
[totalRecord]="(totalCount$ | async) ?? 0"
5356
[columnToDisplays]="displayedColumns"
5457
[pageSize]="pageSize"

Angular/src/app/shared/bia-shared/components/table/bia-table/bia-table.component.html

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,11 @@
103103
[alignFrozen]="col.alignFrozen"
104104
pFrozenColumn
105105
[frozen]="col.isFrozen">
106-
<bia-table-filter [field]="col" [table]="dt"> </bia-table-filter>
106+
<bia-table-filter
107+
[field]="col"
108+
[table]="dt"
109+
[options]="getOptionDto(col.field)">
110+
</bia-table-filter>
107111
</th>
108112
</tr>
109113
</ng-template>

0 commit comments

Comments
 (0)