D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
usr
/
share
/
grafana
/
public
/
app
/
features
/
dashboard
/
components
/
PanelEditor
/
state
/
Filename :
utils.ts
back
Copy
import store from 'app/core/store'; export function saveSectionOpenState(id: string, isOpen: boolean) { store.set(`panel-edit-section-${id}`, isOpen ? 'true' : 'false'); } export function getSectionOpenState(id: string, defaultValue: boolean) { return store.getBool(`panel-edit-section-${id}`, defaultValue); }