mirror of
https://github.com/grafana/grafana.git
synced 2025-01-07 22:53:56 -06:00
Expressions: Restore showing expression query editor even if main data source is not mixed (#29656)
This commit is contained in:
parent
4e4211965e
commit
874f2fafb2
@ -90,7 +90,7 @@ export class QueryEditorRow extends PureComponent<Props, State> {
|
||||
|
||||
getQueryDataSourceIdentifier(): string | null | undefined {
|
||||
const { query, dsSettings } = this.props;
|
||||
return dsSettings.meta.mixed ? query.datasource : dsSettings.uid;
|
||||
return query.datasource ?? dsSettings.uid;
|
||||
}
|
||||
|
||||
async loadDatasource() {
|
||||
|
Loading…
Reference in New Issue
Block a user