mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
InfluxDB: Fix fetching tag values only for selected measurement (#83353)
show tag values only for selected measurement
This commit is contained in:
@@ -134,7 +134,7 @@ export const VisualInfluxQLEditor = (props: Props): JSX.Element => {
|
||||
getTagKeyOptions={getMemoizedTagKeys}
|
||||
getTagValueOptions={(key) =>
|
||||
withTemplateVariableOptions(
|
||||
allTagKeys.then((keys) => getTagValues(datasource, filterTags(query.tags ?? [], keys), key)),
|
||||
allTagKeys.then((keys) => getTagValues(datasource, filterTags(query.tags ?? [], keys), key, measurement)),
|
||||
wrapRegex
|
||||
)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user