chore: publish from staged

This commit is contained in:
github-actions[bot]
2026-06-25 01:19:08 +00:00
parent 29a6748127
commit d4bdfcc706
2 changed files with 17 additions and 1 deletions
+12
View File
@@ -554,6 +554,18 @@ export function setupDropdownCloseHandlers(): void {
e.preventDefault();
const isOpen = dropdown.classList.toggle("open");
toggle.setAttribute("aria-expanded", String(isOpen));
if (isOpen) {
document
.querySelectorAll('.install-dropdown[data-install-scope="list"].open')
.forEach((openDropdown) => {
if (openDropdown === dropdown) return;
openDropdown.classList.remove("open");
openDropdown.querySelector(".install-btn-toggle")
?.setAttribute("aria-expanded", "false");
});
}
return;
}