From 2d48202fa547e94f21662d63a3ff5d04c4fe8f2c Mon Sep 17 00:00:00 2001 From: Adam Mathes Date: Sun, 15 Feb 2026 19:47:59 -0800 Subject: Vanilla JS (v3): Fix filtering logic, Settings navigation, and refine styles for v2 parity --- frontend-vanilla/src/router.ts | 2 ++ 1 file changed, 2 insertions(+) (limited to 'frontend-vanilla/src/router.ts') diff --git a/frontend-vanilla/src/router.ts b/frontend-vanilla/src/router.ts index 46fbe06..a0ac55a 100644 --- a/frontend-vanilla/src/router.ts +++ b/frontend-vanilla/src/router.ts @@ -28,6 +28,8 @@ export class Router extends EventTarget { } else if (segments[0] === 'tag' && segments[1]) { routePath = '/tag'; params.tagName = decodeURIComponent(segments[1]); + } else if (segments[0] === 'settings') { + routePath = '/settings'; } return { path: routePath, params, query: url.searchParams }; -- cgit v1.2.3