Skip to content

Commit bd8d7a7

Browse files
authored
Update mixin-filtering.js
1 parent 3df6afb commit bd8d7a7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/table/helpers/mixin-filtering.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ export default {
125125
// We can't compare newCriteria and oldCriteria, as they
126126
// could point to the same object reference. But `localFilter`
127127
// will be a deep clone if the filter is an object.
128-
if (newCriteria !== this.localFilter) {
128+
if (!looseEqual(newCriteria, this.localFilter)) {
129129
const timeout = this.computedFilterDebounce
130130
clearTimeout(this.$_filterTimer)
131131
this.$_filterTimer = null

0 commit comments

Comments
 (0)