Skip to content

Commit d477c16

Browse files
committed
fix: reload when changing host/filterAFK/includeAudible in Activity view
1 parent c65429b commit d477c16

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

src/views/activity/Activity.vue

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -219,12 +219,21 @@ export default {
219219
},
220220
},
221221
watch: {
222+
host: function () {
223+
this.refresh();
224+
},
222225
timeperiod: function () {
223226
this.refresh();
224227
},
225228
filterCategory: function () {
226229
this.refresh();
227230
},
231+
filterAFK: function () {
232+
this.refresh();
233+
},
234+
includeAudible: function () {
235+
this.refresh();
236+
},
228237
},
229238
230239
mounted: async function () {

0 commit comments

Comments
 (0)