InfluxDB: make influxql options the default if nothing defined (#73247)

make influxql options the default if nothing defined
This commit is contained in:
Galen Kistler
2023-08-14 14:31:11 -05:00
committed by GitHub
parent 09d5483c6c
commit 873ebc58b4

View File

@@ -121,7 +121,7 @@ export class ConfigEditor extends PureComponent<Props, State> {
case InfluxVersion.SQL:
return <InfluxSqlConfig {...this.props} />;
default:
return null;
return <InfluxInfluxQLConfig {...this.props} />;
}
}