Fix all existing prettier issues

This commit is contained in:
David Rodríguez
2025-10-22 15:30:36 +02:00
parent 025f8b25b1
commit 852e7fa81e
64 changed files with 501 additions and 557 deletions

View File

@@ -34,11 +34,11 @@ describe("Dropdown controller", () => {
document.body.innerHTML = "";
});
it ("hide menu when click outside", () => {
it("hide menu when click outside", () => {
const dropdown = document.getElementById("dropdown");
const menu = document.getElementById("menu");
//open the details
dropdown.toggleAttribute('open')
dropdown.toggleAttribute("open");
//click elsewhere
document.body.click();