From bc58e2edab63cc348b7dc38435f505a32810feba Mon Sep 17 00:00:00 2001 From: Kristina Date: Tue, 3 May 2022 06:25:47 -0500 Subject: [PATCH] Fix command palette casing (#48590) --- public/app/features/explore/ExploreActions.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/public/app/features/explore/ExploreActions.tsx b/public/app/features/explore/ExploreActions.tsx index 95b038d4f0e..ce6848fc58c 100644 --- a/public/app/features/explore/ExploreActions.tsx +++ b/public/app/features/explore/ExploreActions.tsx @@ -30,7 +30,7 @@ export const ExploreActions: FC = ({ exploreIdLeft, exploreIdRight }: Pro if (splitted) { actionsArr.push({ id: 'explore/run-query-left', - name: 'Run Query (Left)', + name: 'Run query (left)', keywords: 'query left', perform: () => { dispatch(runQueries(exploreIdLeft)); @@ -41,7 +41,7 @@ export const ExploreActions: FC = ({ exploreIdLeft, exploreIdRight }: Pro // we should always have the right exploreId if split actionsArr.push({ id: 'explore/run-query-right', - name: 'Run Query (Right)', + name: 'Run query (right)', keywords: 'query right', perform: () => { dispatch(runQueries(exploreIdRight)); @@ -70,7 +70,7 @@ export const ExploreActions: FC = ({ exploreIdLeft, exploreIdRight }: Pro } else { actionsArr.push({ id: 'explore/run-query', - name: 'Run Query', + name: 'Run query', keywords: 'query', perform: () => { dispatch(runQueries(exploreIdLeft));