mirror of
https://github.com/grafana/grafana.git
synced 2025-09-22 17:54:30 +08:00
Chore: Update typescript to v4.2.4 (#33297)
* Update typescript to v4.2.4 * Update @types/slate * Fix QueryVariableEditor.test.tsx * Fix search-related type errors * Fix Plugin pages type errors * Fix missing initializer errors * Update snapshot * Revert tsconfig changes
This commit is contained in:
@ -28,15 +28,15 @@ export class PostgresQueryCtrl extends QueryCtrl {
|
||||
metaBuilder: PostgresMetaQuery;
|
||||
lastQueryMeta?: QueryResultMeta;
|
||||
lastQueryError?: string;
|
||||
showHelp: boolean;
|
||||
showHelp = false;
|
||||
tableSegment: any;
|
||||
whereAdd: any;
|
||||
timeColumnSegment: any;
|
||||
metricColumnSegment: any;
|
||||
selectMenu: any[];
|
||||
selectParts: SqlPart[][];
|
||||
groupParts: SqlPart[];
|
||||
whereParts: SqlPart[];
|
||||
selectMenu: any[] = [];
|
||||
selectParts: SqlPart[][] = [[]];
|
||||
groupParts: SqlPart[] = [];
|
||||
whereParts: SqlPart[] = [];
|
||||
groupAdd: any;
|
||||
|
||||
/** @ngInject */
|
||||
|
Reference in New Issue
Block a user