mirror of
https://github.com/grafana/grafana.git
synced 2026-07-30 08:18:10 -05:00
InfluxDB: Fix fetching tag values only for selected measurement (#83353)
show tag values only for selected measurement
This commit is contained in:
+1
-1
@@ -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