We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7f2637d commit 79e9327Copy full SHA for 79e9327
@angular-generic-table/core/pipes/gt-column-search.pipe.ts
@@ -65,6 +65,8 @@ export class GtColumnSearchPipe<R extends GtRow> implements PipeTransform {
65
// Include the row only if all fields match the search strings from each
66
// input. (Empty search strings were excluded from the check earlier).
67
const include = columnSearchTerms.every(term => {
68
+ // Map the search/value function to that field if defined, otherwise
69
+ // return the raw field value.
70
row[term.id] = searchFunction[term.id]
71
? searchFunction[term.id](row)
72
: row[term.id];
0 commit comments