feat: taller route tiles (h-46), labels overlay above route line for more place names, renamed auto routes become custom (rename clears auto_detected + startup backfill)
Build and push images / validate (push) Successful in 2s
Build and push images / build-backend (push) Successful in 6s
Build and push images / build-worker (push) Successful in 5s
Build and push images / build-frontend (push) Successful in 9s

This commit is contained in:
2026-06-23 12:08:33 +01:00
parent 16dff88564
commit 62cea59ef8
4 changed files with 29 additions and 4 deletions
+3
View File
@@ -179,6 +179,9 @@ async def update_route(
raise HTTPException(status_code=404, detail="Route not found")
if body.name is not None and body.name.strip():
route.name = body.name.strip()
# A user-given name makes this a custom route (moves it out of the
# auto-detected group on the routes page).
route.auto_detected = False
if body.sport_type is not None:
route.sport_type = body.sport_type
await db.commit()