list all demarches, filtered by zones

This commit is contained in:
Christophe Robillard 2022-10-24 16:43:18 +02:00
parent f9f31b721a
commit 9abf1c4af3
10 changed files with 182 additions and 1 deletions

View file

@ -83,6 +83,11 @@ export function toggle(el: Element | null, force?: boolean) {
}
}
export function toggleExpandIcon(icon: Element | null) {
icon?.classList.toggle('fr-icon-add-line');
icon?.classList.toggle('fr-icon-subtract-line');
}
export function enable(
el: HTMLSelectElement | HTMLInputElement | HTMLButtonElement | null
) {