From d204b024b7723f5dffa317441a8494692b1474fe Mon Sep 17 00:00:00 2001 From: Kamil Gabryjelski Date: Tue, 5 Jan 2021 07:41:50 +0100 Subject: [PATCH] Set datasource panel open by default (#12211) --- .../src/explore/components/ExploreViewContainer.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/superset-frontend/src/explore/components/ExploreViewContainer.jsx b/superset-frontend/src/explore/components/ExploreViewContainer.jsx index 647dc39d4c461..3fc926fc6b009 100644 --- a/superset-frontend/src/explore/components/ExploreViewContainer.jsx +++ b/superset-frontend/src/explore/components/ExploreViewContainer.jsx @@ -158,7 +158,7 @@ function ExploreViewContainer(props) { const [showingModal, setShowingModal] = useState(false); const [chartIsStale, setChartIsStale] = useState(false); - const [isCollapsed, setIsCollapsed] = useState(true); + const [isCollapsed, setIsCollapsed] = useState(false); const width = `${windowSize.width}px`; const navHeight = props.standalone ? 0 : 90;