diff --git a/src/components/Table/TagSearch/index.vue b/src/components/Table/TagSearch/index.vue index 9da5bcc5c..2de9fd139 100644 --- a/src/components/Table/TagSearch/index.vue +++ b/src/components/Table/TagSearch/index.vue @@ -212,10 +212,12 @@ export default { delete routeFilter.search } const asFilterTags = _.cloneDeep(this.filterTags) - this.filterTags = { - ...asFilterTags, - ...routeFilter - } + setTimeout(() => { + this.filterTags = { + ...asFilterTags, + ...routeFilter + } + }, 100) }, getValueLabel(key, value) { for (const field of this.options) {