diff --git a/src/components/StickyFilter.astro b/src/components/StickyFilter.astro index 0d36f72..86e2a2e 100644 --- a/src/components/StickyFilter.astro +++ b/src/components/StickyFilter.astro @@ -13,11 +13,17 @@ e.detail.elt.remove(); } }; + const beforeSearch = (e) => { + const start = document.querySelector('#start'); + if (start) { + start.value = '0'; + } + };
-
+