From 94309a2294483db1f9c5f6e5fa3e6602b7ecda04 Mon Sep 17 00:00:00 2001 From: Ulas Kalayci Date: Mon, 27 Apr 2026 22:22:03 +0200 Subject: [PATCH] =?UTF-8?q?fix(nav):=20title-tooltip=20f=C3=BCr=20icon-onl?= =?UTF-8?q?y=20Sidebar=20(1024=E2=80=931279px)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public/router.js | 1 + 1 file changed, 1 insertion(+) diff --git a/public/router.js b/public/router.js index 12889bd..d72dc6c 100644 --- a/public/router.js +++ b/public/router.js @@ -751,6 +751,7 @@ function navItemEl({ path, label, icon }) { a.className = 'nav-item'; a.setAttribute('role', 'listitem'); a.setAttribute('aria-label', label); + a.setAttribute('title', label); const i = document.createElement('i'); i.dataset.lucide = icon; i.className = 'nav-item__icon';