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 8c1e77b commit 38d915dCopy full SHA for 38d915d
src/components/table/helpers/mixin-filtering.js
@@ -238,13 +238,7 @@ export default {
238
// Rather than directly grabbing `this.computedLocalFilterFn` or `this.filterFunction`
239
// we have it passed, so that the caller computed prop will be reactive to changes
240
// in the original filter-function (as this routine is a method)
241
- if (
242
- !filterFn ||
243
- !isFunction(filterFn) ||
244
- !criteria ||
245
- looseEqual(criteria, []) ||
246
- looseEqual(criteria, {})
247
- ) {
+ if (!isFunction(filterFn) || !criteria || looseEqual(criteria, []) || looseEqual(criteria, {})) {
248
return null
249
}
250
0 commit comments