mirror of
https://github.com/grafana/grafana.git
synced 2024-11-29 12:14:08 -06:00
NewNavigation: Fix failing e2e test (#45779)
This commit is contained in:
parent
2f0dcbbd9d
commit
043c1be572
@ -2,7 +2,7 @@ import { createSlice, PayloadAction } from '@reduxjs/toolkit';
|
||||
import { NavModelItem } from '@grafana/data';
|
||||
import config from 'app/core/config';
|
||||
|
||||
const defaultPins = (config.bootData.navTree as NavModelItem[]).map((n) => n.id).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(
|
||||
|
Loading…
Reference in New Issue
Block a user