Skip to content

Commit 9a2ddac

Browse files
committed
feat: include ALL geography and polish description
- Add ALL geography row to breakdown table - Remove "15" from description copy
1 parent 5fcaef0 commit 9a2ddac

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

config/techreport.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -725,7 +725,7 @@
725725
"geo_breakdown": {
726726
"id": "geo_breakdown",
727727
"title": "Geographic Breakdown",
728-
"description": "Top 15 geographies by number of origins, showing the percentage with good Core Web Vitals and individual LCP, INP, and CLS scores.",
728+
"description": "Top geographies by number of origins, showing the percentage with good Core Web Vitals and individual LCP, INP, and CLS scores.",
729729
"metric_options": [
730730
{ "label": "Overall CWVs", "value": "overall" },
731731
{ "label": "LCP", "value": "LCP" },

src/js/techreport/geoBreakdown.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,6 @@ class GeoBreakdown {
8383
const geoMap = {};
8484
let latestDate = null;
8585
this.geoData.forEach(row => {
86-
if (row.geo === 'ALL') return;
8786
if (!geoMap[row.geo] || row.date > geoMap[row.geo].date) geoMap[row.geo] = row;
8887
if (!latestDate || row.date > latestDate) latestDate = row.date;
8988
});

0 commit comments

Comments
 (0)