diff --git a/src/components/TeamFieldingTable.vue b/src/components/TeamFieldingTable.vue index 8a66230..94579e7 100644 --- a/src/components/TeamFieldingTable.vue +++ b/src/components/TeamFieldingTable.vue @@ -97,8 +97,12 @@ export default { }, watch: { teamId(newValue, oldValue) { - if (newValue !== oldValue) + if (newValue !== oldValue) { + this.fieldingStats = [] + this.sortKey = 'xCheckCount' + this.sortOrder = -1 this.fetchData() + } } }, methods: {