diff --git a/public/app/plugins/datasource/graphite/components/AddGraphiteFunction.tsx b/public/app/plugins/datasource/graphite/components/AddGraphiteFunction.tsx index 1689697b5544..406d130e9467 100644 --- a/public/app/plugins/datasource/graphite/components/AddGraphiteFunction.tsx +++ b/public/app/plugins/datasource/graphite/components/AddGraphiteFunction.tsx @@ -35,12 +35,16 @@ export function AddGraphiteFunction({ funcDefs }: Props) { }, [value, dispatch]); return ( - } - options={options} - onChange={setValue} - inputMinWidth={150} - /> +
+ + } + options={options} + onChange={setValue} + inputMinWidth={150} + /> +
); } diff --git a/public/app/plugins/datasource/graphite/components/MetricsSection.tsx b/public/app/plugins/datasource/graphite/components/MetricsSection.tsx index 28887f26a25e..b4075036cdf3 100644 --- a/public/app/plugins/datasource/graphite/components/MetricsSection.tsx +++ b/public/app/plugins/datasource/graphite/components/MetricsSection.tsx @@ -12,10 +12,10 @@ type Props = { export function MetricsSection({ segments = [], state }: Props) { return ( - <> +
{segments.map((segment, index) => { return ; })} - +
); } diff --git a/public/app/plugins/datasource/graphite/components/TagsSection.tsx b/public/app/plugins/datasource/graphite/components/TagsSection.tsx index 6c29e2122577..3e1160b07e58 100644 --- a/public/app/plugins/datasource/graphite/components/TagsSection.tsx +++ b/public/app/plugins/datasource/graphite/components/TagsSection.tsx @@ -44,7 +44,7 @@ export function TagsSection({ tags, state }: Props) { ); return ( - <> +
{tags.map((tag, index) => { return ; })} @@ -60,7 +60,7 @@ export function TagsSection({ tags, state }: Props) { /> )} {state.paused && } - +
); }