change(ui): added utm filters
This commit is contained in:
parent
43854675bd
commit
e50c0c7562
2 changed files with 36 additions and 0 deletions
|
|
@ -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
9
frontend/frontend.iml
Normal 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>
|
||||||
Loading…
Add table
Reference in a new issue