Merge branch 'master' into postgres-query-builder

This commit is contained in:
Sven Klemm
2018-08-31 19:02:46 +02:00
183 changed files with 1048 additions and 2225 deletions

View File

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