From d680a020ccf3dbc3aae5c8d8d86f7182ce6fceb3 Mon Sep 17 00:00:00 2001 From: Ashley Harrison Date: Wed, 3 Jan 2024 16:18:27 +0000 Subject: [PATCH] Command Palette: Adjust command palette extensions priority (#79992) adjust command palette extensions priority --- .../commandPalette/actions/dashboardActions.ts | 6 +++--- public/app/features/commandPalette/values.ts | 12 ++++++------ 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/public/app/features/commandPalette/actions/dashboardActions.ts b/public/app/features/commandPalette/actions/dashboardActions.ts index be10a89d11c..342d78e9730 100644 --- a/public/app/features/commandPalette/actions/dashboardActions.ts +++ b/public/app/features/commandPalette/actions/dashboardActions.ts @@ -8,7 +8,7 @@ import impressionSrv from 'app/core/services/impression_srv'; import { getGrafanaSearcher } from 'app/features/search/service'; import { CommandPaletteAction } from '../types'; -import { RECENT_DASHBOARDS_PRORITY, SEARCH_RESULTS_PRORITY } from '../values'; +import { RECENT_DASHBOARDS_PRIORITY, SEARCH_RESULTS_PRIORITY } from '../values'; const MAX_SEARCH_RESULTS = 100; const MAX_RECENT_DASHBOARDS = 5; @@ -41,7 +41,7 @@ export async function getRecentDashboardActions(): Promise