Skip to content

Commit

Permalink
null -> zero adoption
Browse files Browse the repository at this point in the history
  • Loading branch information
max-ostapenko committed Dec 20, 2024
1 parent d0c9143 commit cf69125
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions definitions/output/reports/cwv_tech_adoption.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ SELECT
rank,
geo,
STRUCT(
COALESCE(MAX(IF(client = 'desktop', origins, NULL))) AS desktop,
COALESCE(MAX(IF(client = 'mobile', origins, NULL))) AS mobile
COALESCE(MAX(IF(client = 'desktop', origins, 0))) AS desktop,
COALESCE(MAX(IF(client = 'mobile', origins, 0))) AS mobile
) AS adoption
FROM ${ctx.ref('core_web_vitals', 'technologies')}
WHERE date = '${pastMonth}'
Expand Down

0 comments on commit cf69125

Please sign in to comment.