mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Fix command palette casing (#48590)
This commit is contained in:
@@ -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));
|
||||
|
||||
Reference in New Issue
Block a user