Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
zhaoyongjie committed Feb 7, 2022
1 parent 5568311 commit cc2b81c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ function ExploreViewContainer(props) {

const [showingModal, setShowingModal] = useState(false);
const [isCollapsed, setIsCollapsed] = useState(false);
const [shouldForceUpdate, setshouldForceUpdate] = useState(-1);
const [shouldForceUpdate, setShouldForceUpdate] = useState(-1);

const theme = useTheme();
const width = `${windowSize.width}px`;
Expand Down Expand Up @@ -528,7 +528,7 @@ function ExploreViewContainer(props) {
)}
<Resizable
onResizeStop={(evt, direction, ref, d) => {
setshouldForceUpdate(d?.width);
setShouldForceUpdate(d?.width);
setSidebarWidths(LocalStorageKeys.datasource_width, d);
}}
defaultSize={{
Expand Down

0 comments on commit cc2b81c

Please sign in to comment.