Update location logic to handle TIPLOC as a fallback to CRS

This commit is contained in:
2026-03-16 20:35:26 +00:00
parent 35877ae8ac
commit a327582629

View File

@@ -82,7 +82,8 @@
selectedIndex = -1;
value = '';
console.log('Selected Location: ', JSON.stringify(loc));
goto(`/board?stn=${loc.c.toLowerCase()}`);
const queryString = loc.c || loc.t
goto(`/board?loc=${queryString.toLowerCase()}`);
}
function handleKey(e: KeyboardEvent) {