mirror of
https://github.com/umami-software/umami.git
synced 2026-02-11 08:07:12 +01:00
fix mapfilter / rawquery for relational
This commit is contained in:
parent
7df142b02b
commit
d6c8f3aa18
2 changed files with 5 additions and 5 deletions
|
|
@ -66,7 +66,7 @@ function getDateFormat(date) {
|
|||
function mapFilter(column, operator, name, type = 'String') {
|
||||
switch (operator) {
|
||||
case OPERATORS.equals:
|
||||
return `${column} = {${name}:${type}`;
|
||||
return `${column} = {${name}:${type}}`;
|
||||
case OPERATORS.notEquals:
|
||||
return `${column} != {${name}:${type}}`;
|
||||
default:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue