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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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} />;
}
}