From 860e94420e3bd503032a0a3df0d2ba1f5ef229f4 Mon Sep 17 00:00:00 2001 From: kay delaney <45561153+kaydelaney@users.noreply.github.com> Date: Wed, 23 Feb 2022 11:40:56 +0000 Subject: [PATCH] NewNavigation: Fix default pinned items (#45769) --- public/app/core/reducers/navBarTree.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/app/core/reducers/navBarTree.ts b/public/app/core/reducers/navBarTree.ts index 6223422bad1..83656addacb 100644 --- a/public/app/core/reducers/navBarTree.ts +++ b/public/app/core/reducers/navBarTree.ts @@ -2,7 +2,7 @@ import { createSlice, PayloadAction } from '@reduxjs/toolkit'; import { NavModelItem } from '@grafana/data'; import config from 'app/core/config'; -const defaultPins = ['home', 'dashboards', 'explore', 'alerting'].join(','); +const defaultPins = (config.bootData.navTree as NavModelItem[]).map((n) => n.id).join(','); const storedPins = (window.localStorage.getItem('pinnedNavItems') ?? defaultPins).split(','); export const initialState: NavModelItem[] = ((config.bootData?.navTree ?? []) as NavModelItem[]).map(