From 873ebc58b4d5e0c969daa25c25b2c16a1c63740f Mon Sep 17 00:00:00 2001 From: Galen Kistler <109082771+gtk-grafana@users.noreply.github.com> Date: Mon, 14 Aug 2023 14:31:11 -0500 Subject: [PATCH] InfluxDB: make influxql options the default if nothing defined (#73247) make influxql options the default if nothing defined --- .../influxdb/components/editor/config/ConfigEditor.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/app/plugins/datasource/influxdb/components/editor/config/ConfigEditor.tsx b/public/app/plugins/datasource/influxdb/components/editor/config/ConfigEditor.tsx index 95f26dcac5e..f5e91daa356 100644 --- a/public/app/plugins/datasource/influxdb/components/editor/config/ConfigEditor.tsx +++ b/public/app/plugins/datasource/influxdb/components/editor/config/ConfigEditor.tsx @@ -121,7 +121,7 @@ export class ConfigEditor extends PureComponent { case InfluxVersion.SQL: return ; default: - return null; + return ; } }