Replace fieldset and h2 in sharing with details/summary

This commit is contained in:
Max Berger
2026-03-18 22:19:00 +01:00
parent f4ee4f7060
commit 218cf00deb
4 changed files with 91 additions and 66 deletions

View File

@@ -86,6 +86,9 @@ export class ShareCollectionScene {
this.show = function () {
this.release();
html_scene.classList.remove("hidden");
html_scene.querySelectorAll("details").forEach(function (details) {
details.open = true;
});
cancel_btn.onclick = oncancel;
collectionsCache.getServerFeatures(user, password, errorHandler.setError, (features) => {