Skip to content

Commit 3889478

Browse files
committed
fix rank
1 parent da264f7 commit 3889478

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

definitions/output/reports/tech_crux.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ base_crux AS (
197197
WHEN rank <= 100000 THEN ['Top 100k', 'Top 1M', 'Top 10M', 'ALL']
198198
WHEN rank <= 1000000 THEN ['Top 1M', 'Top 10M', 'ALL']
199199
WHEN rank <= 10000000 THEN ['Top 10M', 'ALL']
200-
ELSE ['Unknown']
200+
WHEN rank <= 100000000 THEN ['ALL']
201201
END AS eligible_ranks,
202202
CONCAT(origin, '/') AS root_page,
203203
IF(device = 'desktop', 'desktop', 'mobile') AS client,

0 commit comments

Comments
 (0)