Skip to content

Commit

Permalink
Fix primefaces#3928: FilterService returning no records for NOT_EQUAL…
Browse files Browse the repository at this point in the history
…S clear
  • Loading branch information
melloware committed Jan 6, 2023
1 parent 90a1606 commit 14dd429
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/lib/api/FilterService.js
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ export const FilterService = {
},
notEquals(value, filter, filterLocale) {
if (filter === undefined || filter === null || (typeof filter === 'string' && filter.trim() === '')) {
return false;
return true;
}

if (value === undefined || value === null) {
Expand Down

0 comments on commit 14dd429

Please sign in to comment.