Skip to content

Commit

Permalink
chore(combo): add unused parameter to filtering pipe #7282
Browse files Browse the repository at this point in the history
  • Loading branch information
PlamenaMiteva committed Jul 28, 2020
1 parent e0bfef1 commit 3e14f8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion projects/igniteui-angular/src/lib/combo/combo.pipes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import { IComboFilteringOptions } from './combo.component';
})
export class IgxComboFilteringPipe implements PipeTransform {
public transform(collection: any[], searchValue: any, displayKey: any,
shouldFilter: boolean, filteringOptions: IComboFilteringOptions) {
shouldFilter: boolean, filteringOptions: IComboFilteringOptions, _: any) {
if (!collection) {
return [];
}
Expand Down

0 comments on commit 3e14f8b

Please sign in to comment.