diff --git a/web/ui/react-app/src/pages/PanelList.tsx b/web/ui/react-app/src/pages/PanelList.tsx index 4ee15ecc96..9781fa030b 100644 --- a/web/ui/react-app/src/pages/PanelList.tsx +++ b/web/ui/react-app/src/pages/PanelList.tsx @@ -20,6 +20,12 @@ interface PanelListState { timeDriftError: string | null; } +const initialPanel = { + id: generateID(), + key: '0', + options: PanelDefaultOptions, +}; + class PanelList extends Component { constructor(props: PathPrefixProps) { super(props); @@ -27,7 +33,7 @@ class PanelList extends Component