diff --git a/public/app/plugins/datasource/graphite/components/AddGraphiteFunction.tsx b/public/app/plugins/datasource/graphite/components/AddGraphiteFunction.tsx
index c130bf0c5d9..938494d6f43 100644
--- a/public/app/plugins/datasource/graphite/components/AddGraphiteFunction.tsx
+++ b/public/app/plugins/datasource/graphite/components/AddGraphiteFunction.tsx
@@ -33,7 +33,7 @@ export function AddGraphiteFunction({ funcDefs }: Props) {
return (
}
+ Component={}
options={options}
onChange={setValue}
inputMinWidth={150}
diff --git a/public/app/plugins/datasource/graphite/components/GraphiteQueryEditor.tsx b/public/app/plugins/datasource/graphite/components/GraphiteQueryEditor.tsx
index a06ee5f20b8..567e086d891 100644
--- a/public/app/plugins/datasource/graphite/components/GraphiteQueryEditor.tsx
+++ b/public/app/plugins/datasource/graphite/components/GraphiteQueryEditor.tsx
@@ -50,6 +50,7 @@ function GraphiteQueryEditorContent() {
className={styles.toggleButton}
icon="pen"
variant="secondary"
+ aria-label="Toggle editor mode"
onClick={() => {
dispatch(actions.toggleEditorMode());
}}
diff --git a/public/app/plugins/datasource/graphite/components/PlayButton.tsx b/public/app/plugins/datasource/graphite/components/PlayButton.tsx
index cc1084cc316..d17bf490632 100644
--- a/public/app/plugins/datasource/graphite/components/PlayButton.tsx
+++ b/public/app/plugins/datasource/graphite/components/PlayButton.tsx
@@ -8,5 +8,5 @@ export function PlayButton() {
const onClick = useCallback(() => {
dispatch(actions.unpause());
}, [dispatch]);
- return ;
+ return ;
}
diff --git a/public/app/plugins/datasource/graphite/components/TagsSection.tsx b/public/app/plugins/datasource/graphite/components/TagsSection.tsx
index c69e33378c2..11beee3172a 100644
--- a/public/app/plugins/datasource/graphite/components/TagsSection.tsx
+++ b/public/app/plugins/datasource/graphite/components/TagsSection.tsx
@@ -52,7 +52,7 @@ export function TagsSection({ tags, state }: Props) {
}}
loadOptions={debouncedGetTagsAsSegments}
reloadOptionsOnChange={true}
- Component={}
+ Component={}
/>
)}
{state.paused && }