Skip to content

Commit

Permalink
Fix gtag recording of event value
Browse files Browse the repository at this point in the history
  • Loading branch information
medmunds committed Jan 22, 2021
1 parent 2a8cf5e commit df7fe62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/recording.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ function recordEvent(action, label, value) {
'send_to': READTHEDOCS_DATA.user_analytics_code,
'event_category': category,
'event_label': label,
'event_value': value,
'value': value,
'dimension1': READTHEDOCS_DATA.project,
'dimension2': READTHEDOCS_DATA.version
});
Expand Down

0 comments on commit df7fe62

Please sign in to comment.