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 3df6afb commit bd8d7a7Copy full SHA for bd8d7a7
src/components/table/helpers/mixin-filtering.js
@@ -125,7 +125,7 @@ export default {
125
// We can't compare newCriteria and oldCriteria, as they
126
// could point to the same object reference. But `localFilter`
127
// will be a deep clone if the filter is an object.
128
- if (newCriteria !== this.localFilter) {
+ if (!looseEqual(newCriteria, this.localFilter)) {
129
const timeout = this.computedFilterDebounce
130
clearTimeout(this.$_filterTimer)
131
this.$_filterTimer = null
0 commit comments