From cb7e18938b8eb6860a64b91aaba13a7eb31bc95b Mon Sep 17 00:00:00 2001 From: Nicolas DUPEUX Date: Sat, 17 Jun 2023 16:01:14 +0200 Subject: [PATCH] [opentsdb] Allow custom tag key in OpenTSDB Query editor (#62762) --- public/app/plugins/datasource/opentsdb/components/TagSection.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/public/app/plugins/datasource/opentsdb/components/TagSection.tsx b/public/app/plugins/datasource/opentsdb/components/TagSection.tsx index 132fe87271d..f292acaa374 100644 --- a/public/app/plugins/datasource/opentsdb/components/TagSection.tsx +++ b/public/app/plugins/datasource/opentsdb/components/TagSection.tsx @@ -140,6 +140,7 @@ export function TagSection({ className="gf-form-input" value={curTagKey ? toOption('' + curTagKey) : undefined} placeholder="key" + allowCustomValue onOpenMenu={async () => { updKeyIsLoading(true); const tKs = await suggestTagKeys(query);