change(ui): added utm filters

This commit is contained in:
Shekar Siri 2024-05-07 13:52:45 +02:00
parent 43854675bd
commit e50c0c7562
2 changed files with 36 additions and 0 deletions

View file

@ -234,6 +234,33 @@ export const filters = [
operatorOptions: filterOptions.tagElementOperators, operatorOptions: filterOptions.tagElementOperators,
options: [], options: [],
}, },
{
key: FilterKey.UTM_SOURCE,
type: FilterType.MULTIPLE,
category: FilterCategory.RECORDING_ATTRIBUTES,
label: 'UTM Source',
operator: 'is',
operatorOptions: filterOptions.stringOperators,
icon: 'filters/country',
},
{
key: FilterKey.UTM_MEDIUM,
type: FilterType.MULTIPLE,
category: FilterCategory.RECORDING_ATTRIBUTES,
label: 'UTM Medium',
operator: 'is',
operatorOptions: filterOptions.stringOperators,
icon: 'filters/country',
},
{
key: FilterKey.UTM_CAMPAIGN,
type: FilterType.MULTIPLE,
category: FilterCategory.RECORDING_ATTRIBUTES,
label: 'UTM Campaign',
operator: 'is',
operatorOptions: filterOptions.stringOperators,
icon: 'filters/country',
},
{ {
key: FilterKey.USER_COUNTRY, key: FilterKey.USER_COUNTRY,
type: FilterType.MULTIPLE_DROPDOWN, type: FilterType.MULTIPLE_DROPDOWN,

9
frontend/frontend.iml Normal file
View file

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<module version="4">
<component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$" />
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>