mirror of
https://github.com/umami-software/umami.git
synced 2026-02-07 22:27:16 +01:00
Filter tag enhancements.
This commit is contained in:
parent
a4d8afe516
commit
ef11124672
12 changed files with 160 additions and 64 deletions
|
|
@ -94,6 +94,13 @@ export const OPERATORS = {
|
|||
after: 'af',
|
||||
} as const;
|
||||
|
||||
export const OPERATOR_PREFIXES = {
|
||||
[OPERATORS.equals]: '',
|
||||
[OPERATORS.notEquals]: '!',
|
||||
[OPERATORS.contains]: '~',
|
||||
[OPERATORS.doesNotContain]: '!~',
|
||||
};
|
||||
|
||||
export const DATA_TYPES = {
|
||||
[DATA_TYPE.string]: 'string',
|
||||
[DATA_TYPE.number]: 'number',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue