Fix command palette casing (#48590)

This commit is contained in:
Kristina
2022-05-03 06:25:47 -05:00
committed by GitHub
parent a927608cf5
commit bc58e2edab

View File

@@ -30,7 +30,7 @@ export const ExploreActions: FC<Props> = ({ 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<Props> = ({ 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<Props> = ({ exploreIdLeft, exploreIdRight }: Pro
} else {
actionsArr.push({
id: 'explore/run-query',
name: 'Run Query',
name: 'Run query',
keywords: 'query',
perform: () => {
dispatch(runQueries(exploreIdLeft));