Fix: Update save path display to include title attribute for better accessibility

This commit is contained in:
MasterAcnolo
2026-04-12 17:40:01 +02:00
parent 3e2b7e8190
commit f583a006f2
2 changed files with 6 additions and 3 deletions

View File

@@ -14,6 +14,7 @@ window.addEventListener("DOMContentLoaded", async () => {
async function applyPathFromBack(path) {
savePathElem.textContent = path;
savePathElem.title = path;
hidden.value = path;
localStorage.setItem("customDownloadPath", path); // UX only
}