diff --git a/src/views/entityExplorer/EntityExplorer.vue b/src/views/entityExplorer/EntityExplorer.vue index 6f1d1deb..ce7f1510 100644 --- a/src/views/entityExplorer/EntityExplorer.vue +++ b/src/views/entityExplorer/EntityExplorer.vue @@ -871,7 +871,8 @@ export default { }, watch: { timeFilter () { - this.search({ metaList: this.metaList, q: this.q, str: this.str }) + const keywordList = this.getKeywordListByMetaList(this.metaList) + this.search({ metaList: this.metaList, q: this.q, str: this.str, keywordList: keywordList }) } }, setup () {