Make GeoIntel browser title scale neutral
GeoIntel CI / docs-smoke (push) Canceled after 0s
GeoIntel CI / contract-smoke (push) Canceled after 0s

This commit is contained in:
Codex
2026-07-17 17:52:39 +02:00
parent c50756f67d
commit b8d621edd5
3 changed files with 5 additions and 1 deletions
+2
View File
@@ -33,6 +33,8 @@
- Made the global context bar and visible workspace labels use the same - Made the global context bar and visible workspace labels use the same
regional totals and end-user label `Vlaanderen (285 gemeenten)`; technical regional totals and end-user label `Vlaanderen (285 gemeenten)`; technical
project names and one-partition map counts no longer leak into the Map flow. project names and one-partition map counts no longer leak into the Map flow.
- Removed the Kempen-only browser title now that the same workbench also
operates at Flemish scope.
## Sprint 235 Governed bathymetry profiles and Belgian scale architecture (2026-07-17) ## Sprint 235 Governed bathymetry profiles and Belgian scale architecture (2026-07-17)
@@ -451,6 +451,7 @@ def test_frontend_labels_flanders_scope_without_kempen_mislabeling() -> None:
def test_frontend_uses_partitioned_bathymetry_selection_for_regional_scope() -> None: def test_frontend_uses_partitioned_bathymetry_selection_for_regional_scope() -> None:
app = (ROOT / "frontend" / "src" / "App.tsx").read_text(encoding="utf-8") app = (ROOT / "frontend" / "src" / "App.tsx").read_text(encoding="utf-8")
index = (ROOT / "frontend" / "index.html").read_text(encoding="utf-8")
focus = ( focus = (
ROOT / "frontend" / "src" / "config" / "primaryFocus.ts" ROOT / "frontend" / "src" / "config" / "primaryFocus.ts"
).read_text(encoding="utf-8") ).read_text(encoding="utf-8")
@@ -474,3 +475,4 @@ def test_frontend_uses_partitioned_bathymetry_selection_for_regional_scope() ->
assert "regionalBathymetryProfileCount" in app assert "regionalBathymetryProfileCount" in app
assert "profielen · ${regionalBathymetryPartitions.length} gemeenten" in app assert "profielen · ${regionalBathymetryPartitions.length} gemeenten" in app
assert "FLANDERS_WORKSPACE_LABEL = 'Vlaanderen (285 gemeenten)'" in focus assert "FLANDERS_WORKSPACE_LABEL = 'Vlaanderen (285 gemeenten)'" in focus
assert "<title>GeoIntel</title>" in index
+1 -1
View File
@@ -4,7 +4,7 @@
<meta charset="UTF-8" /> <meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/svg+xml" href="/geointel-icon.svg" /> <link rel="icon" type="image/svg+xml" href="/geointel-icon.svg" />
<title>GeoIntel Kempen</title> <title>GeoIntel</title>
</head> </head>
<body> <body>
<div id="root"></div> <div id="root"></div>