Fix goal name display in pageview goals

This commit is contained in:
Uku Taht 2020-09-21 10:52:05 +03:00
parent 9ad2075d6f
commit 21039de5e2

View File

@ -521,7 +521,7 @@ defmodule Plausible.Stats.Clickhouse do
group_by: e.name,
order_by: [desc: fragment("count")],
select: %{
name: e.name,
name: ^goal,
count: fragment("uniq(user_id) as count"),
total_count: fragment("count(*) as total_count")
}