Commit 0fb7ee05 by Ryan McKinley Committed by GitHub

Chore: Minor cleanup (#27112)

parent a2a6b944
...@@ -8,8 +8,8 @@ ...@@ -8,8 +8,8 @@
"additionalProperties": false, "additionalProperties": false,
"properties": { "properties": {
"$schema": { "$schema": {
"type": "string", "type": "string",
"description": "Schema definition for the plugin.json file" "description": "Schema definition for the plugin.json file"
}, },
"id": { "id": {
"type": "string", "type": "string",
......
...@@ -538,8 +538,11 @@ export interface DataSourceSelectItem { ...@@ -538,8 +538,11 @@ export interface DataSourceSelectItem {
export interface AnnotationQueryRequest<MoreOptions = {}> { export interface AnnotationQueryRequest<MoreOptions = {}> {
range: TimeRange; range: TimeRange;
rangeRaw: RawTimeRange; rangeRaw: RawTimeRange;
// Should be DataModel but cannot import that here from the main app. Needs to be moved to package first. // Should be DataModel but cannot import that here from the main app. Needs to be moved to package first.
dashboard: any; dashboard: any;
// The annotation query, typically extends DataQuery
annotation: { annotation: {
datasource: string; datasource: string;
enable: boolean; enable: boolean;
......
...@@ -8,7 +8,7 @@ export interface AddDashboardConfig { ...@@ -8,7 +8,7 @@ export interface AddDashboardConfig {
timeRange: DashboardTimeRangeConfig; timeRange: DashboardTimeRangeConfig;
timezone: string; timezone: string;
title: string; title: string;
variables: Partial<AddVariableConfig>[]; variables: Array<Partial<AddVariableConfig>>;
} }
export interface AddVariableConfig { export interface AddVariableConfig {
...@@ -145,7 +145,7 @@ const addVariable = (config: Partial<AddVariableConfig>, isFirst: boolean): any ...@@ -145,7 +145,7 @@ const addVariable = (config: Partial<AddVariableConfig>, isFirst: boolean): any
return fullConfig; return fullConfig;
}; };
const addVariables = (configs: Partial<AddVariableConfig>[]): any => { const addVariables = (configs: Array<Partial<AddVariableConfig>>): any => {
if (configs.length > 0) { if (configs.length > 0) {
e2e.pages.Dashboard.Settings.General.sectionItems('Variables').click(); e2e.pages.Dashboard.Settings.General.sectionItems('Variables').click();
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment