Added month select component.

This commit is contained in:
Mike Cao 2023-08-16 10:50:28 -07:00
parent 6ef1f2e9f9
commit c548267d91
16 changed files with 169 additions and 71 deletions

View file

@ -67,12 +67,12 @@ function getTimestampIntervalQuery(field: string): string {
}
}
function mapFilter(column, operator, name) {
function mapFilter(column, operator, name, type = 'String') {
switch (operator) {
case OPERATORS.equals:
return `${column} = {{${name}}}`;
return `${column} = {${name}:${type}`;
case OPERATORS.notEquals:
return `${column} != {{${name}}}`;
return `${column} != {${name}:${type}}`;
default:
return '';
}