fix bug cannot open mobile navbar

main
alexanderroese 2024-06-22 19:48:20 +02:00
parent 4832169ba3
commit 24f64bd92a
1 changed files with 3 additions and 1 deletions

View File

@ -223,7 +223,9 @@ class Accordion {
document.querySelectorAll('details').forEach((el) => {
console.log("id v", el.id.startsWith("Details-collapsible_row_"))
if (el.id.startsWith("Details-collapsible_row_")) {
new Accordion(el);
}
});
</script>