Skip to content

Commit bd13ca7

Browse files
committed
Update ts-filter-service.generator.ts
1 parent d69c9dd commit bd13ca7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ng-generate/table/generators/ts-filter-service.generator.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -503,7 +503,7 @@ export class TsFilterServiceGenerator {
503503
${
504504
this.allStringProps.length > 0
505505
? `this.activeFilters.filter(af => af.type === FilterEnums.Search).forEach(af => {
506-
if (af.prop != null && af.filterValue != null) {
506+
if (af.prop !== null && af.filterValue !== null) {
507507
query.addNode(new Or(this.addSelectedColumnsQuery(af.prop, af.filterValue)));
508508
}
509509
});`

0 commit comments

Comments
 (0)