-
Notifications
You must be signed in to change notification settings - Fork 225
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[NASAA-205] - Send top stories experiment analytics events #12075
base: latest
Are you sure you want to change the base?
Changes from all commits
7625d2d
ac4cd70
ef8f7f1
a7cd6af
6905317
5607655
30f746f
558bb5e
fc995db
9c42c11
34973c6
150f137
b723306
2b79825
cae1f67
4766c64
1792eb4
c24cdec
d97435f
6a14fe1
5e92f4c
4cd546e
85e6a69
5eac132
3295412
2f64abe
f585e09
f3d828a
42f3c53
4439bf6
a2040e3
a6a7619
8c67eba
c49dc8d
745e9dd
e0d0b7a
ff62b71
5819495
b04d1ab
b5e725d
82475ce
be4d6cb
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,6 +25,7 @@ export const buildPageATIParams = ({ | |
producerId, | ||
timePublished, | ||
timeUpdated, | ||
ampExperimentName, | ||
experimentVariant, | ||
} = atiData; | ||
|
||
|
@@ -50,6 +51,7 @@ export const buildPageATIParams = ({ | |
statsDestination, | ||
timePublished, | ||
timeUpdated, | ||
...(ampExperimentName && { ampExperimentName }), | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. nitpick: Is spreading needed here? If There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If I left it as is in the object, the key |
||
...(experimentVariant && { experimentVariant }), | ||
}; | ||
}; | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
After fixing conflicts, there was an initial concern that this might be overridden by the elections banner experiment that is currently being done, but as that is only run on mundo/portuguese, this should be ok because
experimentVariant
won't be defined.