Skip to content

Commit

Permalink
revert sqleditor change
Browse files Browse the repository at this point in the history
  • Loading branch information
justinpark committed Oct 3, 2024
1 parent 8f91264 commit 2ca6961
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions superset-frontend/src/SqlLab/components/SqlEditor/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -163,10 +163,7 @@ const StyledToolbar = styled.div`
}
`;

const StyledSidebar = styled.div<{
width: number;
hide: boolean | undefined;
}>`
const StyledSidebar = styled.div<{ width: number; hide: boolean | undefined }>`
flex: 0 0 ${({ width }) => width}px;
width: ${({ width }) => width}px;
padding: ${({ theme, hide }) => (hide ? 0 : theme.gridUnit * 2.5)}px;
Expand Down

0 comments on commit 2ca6961

Please sign in to comment.