From 2b7ae75cc3ec4919bb88d473da086d2215c8b724 Mon Sep 17 00:00:00 2001 From: inportb Date: Mon, 1 May 2023 17:20:40 -0400 Subject: [PATCH] Fix persistent schedule view filter --- htdocs/ViewSchedule.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/htdocs/ViewSchedule.vue b/htdocs/ViewSchedule.vue index c29aff6..c4922dc 100644 --- a/htdocs/ViewSchedule.vue +++ b/htdocs/ViewSchedule.vue @@ -135,6 +135,7 @@ this.$watch( () => (this.client, this.selection, this.date_begin, this.date_end, {}), debounce(async () => { + this.filter = {}; window.clearTimeout(this.timer); this.update(); }, 500)