From 0971af02536adc5e61e67e520c2f06212f7dbed8 Mon Sep 17 00:00:00 2001 From: Hanbyul Jo Date: Fri, 6 Oct 2023 09:59:54 -0400 Subject: [PATCH] Do not make scroll to appear when not needed --- app/scripts/components/datasets/s-explore/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/scripts/components/datasets/s-explore/index.tsx b/app/scripts/components/datasets/s-explore/index.tsx index f2abd9c48..376c7bb89 100644 --- a/app/scripts/components/datasets/s-explore/index.tsx +++ b/app/scripts/components/datasets/s-explore/index.tsx @@ -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) => {