web/sidebar: highlight the category tab even on subpages

This commit is contained in:
wukko 2024-06-24 15:47:20 +06:00
parent eb12fa631b
commit e305c99b94
No known key found for this signature in database
GPG key ID: 3E30B3F26C7B4AA2

View file

@ -13,7 +13,10 @@
let tab: HTMLElement;
$: isTabActive = $page.url.pathname === tabLink;
$: currentTab = $page.url.pathname.split('/')[1];
$: baseTabPath = tabLink.split('/')[1]
$: isTabActive = currentTab === baseTabPath;
const showTab = (e: HTMLElement | undefined) => {
if (e) {