mirror of
https://github.com/umami-software/umami.git
synced 2026-02-04 04:37:11 +01:00
Revert "add none/direct back to referrers table"
This reverts commit 10a31a7513.
This commit is contained in:
parent
53cd32542e
commit
d7f20dd3bf
5 changed files with 6 additions and 6 deletions
|
|
@ -34,7 +34,8 @@ async function relationalQuery(
|
|||
let entryExitQuery = '';
|
||||
let excludeDomain = '';
|
||||
if (column === 'referrer_domain') {
|
||||
excludeDomain = `and website_event.referrer_domain != {{websiteDomain}}`;
|
||||
excludeDomain = `and website_event.referrer_domain != {{websiteDomain}}
|
||||
and website_event.referrer_domain is not null`;
|
||||
}
|
||||
|
||||
if (type === 'entry' || type === 'exit') {
|
||||
|
|
@ -96,7 +97,7 @@ async function clickhouseQuery(
|
|||
let entryExitQuery = '';
|
||||
|
||||
if (column === 'referrer_domain') {
|
||||
excludeDomain = `and referrer_domain != {websiteDomain:String}`;
|
||||
excludeDomain = `and referrer_domain != {websiteDomain:String} and referrer_domain != ''`;
|
||||
}
|
||||
|
||||
if (type === 'entry' || type === 'exit') {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue