Skip to content

Commit

Permalink
feat(platform): table filter enhancement
Browse files Browse the repository at this point in the history
closes [#11783](#11783)

## Description

fix table component host spec test
  • Loading branch information
khotcholava committed Nov 29, 2024
1 parent c11dc19 commit 34e1581
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/platform/table/tests/table.component-host.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -488,7 +488,7 @@ describe('TableComponent Host', () => {
describe('data source', () => {
it('fetch should be triggered when call table.filter()', () => {
const filterBy: CollectionFilter[] = [
{ field: 'status', value: 'valid', strategy: 'equalTo', exclude: false }
{ field: 'status', value: 'valid', strategy: 'equalTo', fieldName: 'status', exclude: false }
];

tableComponent.filter(filterBy);
Expand Down

0 comments on commit 34e1581

Please sign in to comment.