From b051528cba8884338cc00dd91aa656bf6579b1ef Mon Sep 17 00:00:00 2001 From: Gauthier Roebroeck Date: Wed, 9 Feb 2022 10:28:39 +0800 Subject: [PATCH] fix(webui): reset duplicate match table when hash is changed --- komga-webui/src/components/PageHashMatchesTable.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/komga-webui/src/components/PageHashMatchesTable.vue b/komga-webui/src/components/PageHashMatchesTable.vue index 9536a6e9f..33879db3f 100644 --- a/komga-webui/src/components/PageHashMatchesTable.vue +++ b/komga-webui/src/components/PageHashMatchesTable.vue @@ -69,7 +69,9 @@ export default Vue.extend({ deep: true, }, hash(val) { - this.options.page = 1 + this.options = {} + this.elements = [] + this.totalElements = 0 this.loadData(val) }, },