Skip to content

Commit

Permalink
Style fix for panel body (#695)
Browse files Browse the repository at this point in the history
Follow up of #692
Currently panel body is showing up scrolls even when not needed. This PR
fixes the issue.
  • Loading branch information
hanbyul-here authored Oct 6, 2023
2 parents e2c4b90 + 0971af0 commit b3a3a75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/scripts/components/datasets/s-explore/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ const ScrollArea = styled.div`
const ScrollAreaInner = styled.div`
position: absolute;
inset: 0px;
overflow: scroll;
overflow-y: auto;
`;

const isSelectedDateValid = (dateList, selectedDate) => {
Expand Down

0 comments on commit b3a3a75

Please sign in to comment.