Skip to content

Commit

Permalink
fix UTM charts in web analytics
Browse files Browse the repository at this point in the history
  • Loading branch information
CollinSchneider committed Apr 23, 2024
1 parent 24363b4 commit 75ee155
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ def bar_chart
bar_chart_data = ClickHouseQueries::Events::StackedBarChart.new(
public_keys_for_requested_data_source,
event: Analytics::Event::ReservedNames.NEW_SESSION,
property: params[:query_param].strip.downcase,
property: Analytics::Event::ReservedPropertyNames.URL,
start_time: start_timestamp,
end_time: end_timestamp,
select_function_formatter: 'extractURLParameter',
Expand All @@ -26,7 +26,7 @@ def bar_chart
bar_chart_data = ClickHouseQueries::Events::StackedBarChart.new(
public_keys_for_requested_data_source,
event: Analytics::Event::ReservedNames.NEW_SESSION,
property: query_param.strip.downcase,
property: Analytics::Event::ReservedPropertyNames.URL,
start_time: start_timestamp,
end_time: end_timestamp,
select_function_formatter: 'extractURLParameter',
Expand Down

0 comments on commit 75ee155

Please sign in to comment.