diff --git a/app/client/src/git/ce/components/DefaultBranch/DefaultBranchView.tsx b/app/client/src/git/ce/components/DefaultBranch/DefaultBranchView.tsx index 1e76143d2d..db99e1f6ed 100644 --- a/app/client/src/git/ce/components/DefaultBranch/DefaultBranchView.tsx +++ b/app/client/src/git/ce/components/DefaultBranch/DefaultBranchView.tsx @@ -39,6 +39,10 @@ const SectionDesc = styled(Text)` const StyledSelect = styled(Select)` width: 240px; margin-right: 12px; + + .rc-virtual-list-holder { + max-height: 120px !important; + } `; const StyledLink = styled(Link)` diff --git a/app/client/src/git/components/SettingsModal/TabBranch/index.tsx b/app/client/src/git/components/SettingsModal/TabBranch/index.tsx index 559685801b..3f10c848d5 100644 --- a/app/client/src/git/components/SettingsModal/TabBranch/index.tsx +++ b/app/client/src/git/components/SettingsModal/TabBranch/index.tsx @@ -5,6 +5,7 @@ import DefaultBranch from "git/ee/components/DefaultBranch"; const Container = styled.div` overflow: auto; + min-height: 280px; `; interface TabBranchProps { diff --git a/app/client/src/git/components/SettingsModal/TabGeneral/index.tsx b/app/client/src/git/components/SettingsModal/TabGeneral/index.tsx index 7a53413766..ba95a3d4ec 100644 --- a/app/client/src/git/components/SettingsModal/TabGeneral/index.tsx +++ b/app/client/src/git/components/SettingsModal/TabGeneral/index.tsx @@ -5,6 +5,7 @@ import styled from "styled-components"; const Container = styled.div` overflow: auto; + min-height: 280px; `; interface TabGeneralProps {