From 13beaf21ed3734a9a6320841590e797b52e97781 Mon Sep 17 00:00:00 2001 From: Edward Betts Date: Sat, 28 Feb 2026 11:06:37 +0000 Subject: [PATCH] Auto-open panel on mobile when no route is loaded Shows the form immediately instead of an empty world map. Co-Authored-By: Claude Sonnet 4.6 --- web/static/app.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/web/static/app.js b/web/static/app.js index 0feb2de..3953af5 100644 --- a/web/static/app.js +++ b/web/static/app.js @@ -535,4 +535,6 @@ window.addEventListener('popstate', () => { if (RELATION_ID) { loadRoute(RELATION_ID); +} else if (isMobile()) { + openPanel(); }