diff --git a/frontend/src/views/Match.vue b/frontend/src/views/Match.vue index f60d548a..99c8727f 100644 --- a/frontend/src/views/Match.vue +++ b/frontend/src/views/Match.vue @@ -134,7 +134,7 @@ export default { this.headerHeight = this.$refs.header.getHeight(); if (this.socket) { this.socket.on('recognize', (/* message */) => { - if (this.socketEnabled) this.get().matches(); + if (this.socketEnabled) this.get().matches({ filters: false }); }); } this.get().matches(); @@ -183,10 +183,10 @@ export default { const index = this.matches.source.findIndex((obj) => obj.id === data.id); if (index !== -1) this.matches.source[index] = data; }); - this.emitter.on('paginate', (value) => { + this.emitter.on('paginate', async (value) => { this.pagination.temp = value; this.clear(['source', 'selected', 'disabled', 'loaded']); - this.get().matches(); + await this.get().matches({ filters: false }); }); }, methods: {