fix rate special function when using group by

This commit is contained in:
Sven Klemm
2018-07-15 15:14:12 +02:00
parent c3c20ef2e2
commit 6e824e81bf
4 changed files with 29 additions and 25 deletions

View File

@ -1,9 +1,9 @@
import { SqlPartDef, SqlPart } from 'app/core/components/sql_part/sql_part';
var index = [];
let index = [];
function createPart(part): any {
var def = index[part.type];
let def = index[part.type];
if (!def) {
return null;
}