fix if else in referrer filter

This commit is contained in:
Francis Cao 2023-08-04 14:30:10 -07:00
parent 0fd57aa7cf
commit dbdbc90ee7

View File

@ -72,13 +72,13 @@ function getFilterQuery(filters = {}): string {
const filter = filters[key];
if (filter !== undefined && !IGNORED_FILTERS.includes(key)) {
const column = FILTER_COLUMNS[key] || key;
arr.push(`and ${column}={{${key}}}`);
if (key === 'referrer') {
arr.push(
'and (website_event.referrer_domain != {{websiteDomain}} or website_event.referrer_domain is null)',
);
} else {
const column = FILTER_COLUMNS[key] || key;
arr.push(`and ${column}={{${key}}}`);
}
}