We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d69c9dd commit bd13ca7Copy full SHA for bd13ca7
src/ng-generate/table/generators/ts-filter-service.generator.ts
@@ -503,7 +503,7 @@ export class TsFilterServiceGenerator {
503
${
504
this.allStringProps.length > 0
505
? `this.activeFilters.filter(af => af.type === FilterEnums.Search).forEach(af => {
506
- if (af.prop != null && af.filterValue != null) {
+ if (af.prop !== null && af.filterValue !== null) {
507
query.addNode(new Or(this.addSelectedColumnsQuery(af.prop, af.filterValue)));
508
}
509
});`
0 commit comments