Skip to content

Commit

Permalink
fix global faceting to column faceting
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinVandy committed Jan 12, 2025
1 parent 232c5ea commit 495f0ed
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion examples/angular/filters/src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ import {
createPaginatedRowModel,
createSortedRowModel,
filterFns,
globalFacetingFeature,
injectTable,
isFunction,
rowPaginationFeature,
Expand Down
2 changes: 1 addition & 1 deletion packages/table-core/src/types/Table.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ export type Table<
| ('columnVisibilityFeature' extends keyof TFeatures
? Table_ColumnVisibility<TFeatures, TData>
: never)
| ('globalFacetingFeature' extends keyof TFeatures
| ('columnFacetingFeature' extends keyof TFeatures
? Table_ColumnFaceting<TFeatures, TData>
: never)
| ('globalFilteringFeature' extends keyof TFeatures
Expand Down

0 comments on commit 495f0ed

Please sign in to comment.