diff --git a/webroot/js/CalendarFilters.js b/webroot/js/CalendarFilters.js index 33db6c9..a77f32c 100644 --- a/webroot/js/CalendarFilters.js +++ b/webroot/js/CalendarFilters.js @@ -161,7 +161,6 @@ export function defineCalendarFilters(DNA) { } const name = target.getAttribute('name'); - const type = target.getAttribute('type'); switch (name) { case this.monthParam: case this.yearParam: @@ -182,11 +181,6 @@ export function defineCalendarFilters(DNA) { this.updateState(); this.requestSubmit(); break; - default: { - if (type === 'radio' || type === 'checkbox') { - this.requestSubmit(); - } - } } };