Skip to content

Commit

Permalink
formatting null adoption
Browse files Browse the repository at this point in the history
  • Loading branch information
max-ostapenko committed Jan 12, 2025
1 parent 93ea0f6 commit 4370e44
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 4370e44

Please sign in to comment.