Skip to content

Commit 321f772

Browse files
committed
Fix scroll on non-Frida intercept target lists (broken by PoC changes)
1 parent fa3f33f commit 321f772

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

src/components/intercept/config/frida-config.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ const ConfigContainer = styled.div`
5555
const FridaTargetList = styled(InterceptionTargetList)`
5656
padding: 10px 0;
5757
margin: 0;
58+
max-height: unset;
5859
`;
5960

6061
const SelectedHostBlock = styled.div`

src/components/intercept/config/intercept-target-list.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@ const ListScrollContainer = styled.div`
3434
margin: 10px -15px;
3535
flex-grow: 1;
3636
flex-shrink: 1;
37+
38+
max-height: 279px;
3739
`;
3840

3941
const TargetList = styled.ul`

0 commit comments

Comments
 (0)