fix(webui): reset hash card when hash is changed

This commit is contained in:
Gauthier Roebroeck 2022-02-09 10:30:10 +08:00
parent b051528cba
commit 745fe09ec2

View file

@ -129,8 +129,9 @@ export default Vue.extend({
watch: { watch: {
hash: { hash: {
handler() { handler() {
this.getMatchCount()
this.deleteRequested = false this.deleteRequested = false
this.matchCount = undefined
this.getMatchCount()
}, },
deep: true, deep: true,
}, },