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 22:31:11 +03:00
committed by GitHub
parent 09d5483c6c
commit 873ebc58b4
@@ -121,7 +121,7 @@ export class ConfigEditor extends PureComponent<Props, State> {
case InfluxVersion.SQL: case InfluxVersion.SQL:
return <InfluxSqlConfig {...this.props} />; return <InfluxSqlConfig {...this.props} />;
default: default:
return null; return <InfluxInfluxQLConfig {...this.props} />;
} }
} }