fix: label is added in the tabs (#2507)

This commit is contained in:
Palash Gupta 2023-03-27 12:11:35 +05:30 committed by GitHub
parent 6c2faa21f4
commit fe640aae39
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -146,6 +146,7 @@ function QuerySection({
const items = [
{
key: EQueryType.QUERY_BUILDER.toString(),
label: 'Query Builder',
tab: (
<TabHeader
tabName="Query Builder"
@ -172,6 +173,7 @@ function QuerySection({
},
{
key: EQueryType.CLICKHOUSE.toString(),
label: 'ClickHouse Query',
tab: (
<TabHeader
tabName="ClickHouse Query"
@ -195,6 +197,7 @@ function QuerySection({
},
{
key: EQueryType.PROM.toString(),
label: 'PromQL',
tab: (
<TabHeader
tabName="PromQL"