fix(webui): reset duplicate match table when hash is changed

This commit is contained in:
Gauthier Roebroeck 2022-02-09 10:28:39 +08:00
parent aa96484969
commit b051528cba

View file

@ -69,7 +69,9 @@ export default Vue.extend({
deep: true, deep: true,
}, },
hash(val) { hash(val) {
this.options.page = 1 this.options = {}
this.elements = []
this.totalElements = 0
this.loadData(val) this.loadData(val)
}, },
}, },