Skip to content

Commit 7e7c2db

Browse files
committed
Fixed broken auto scroll of properties pane
1 parent 97027e5 commit 7e7c2db

File tree

2 files changed

+4
-0
lines changed
  • src
    • browser/modules/Stream/CypherFrame/VisualizationView/PropertiesPanelContent
    • neo4j-arc/graph-visualization/GraphVisualizer/DefaultPanelContent

2 files changed

+4
-0
lines changed

src/browser/modules/Stream/CypherFrame/VisualizationView/PropertiesPanelContent/styled.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,7 @@ export const StyledNodeInspectorContainer = styled.div<{
140140

141141
export const PaneWrapper = styled.div`
142142
padding: 0 14px;
143+
height: 100%;
143144
`
144145

145146
export const PaneHeader = styled.div`
@@ -149,6 +150,7 @@ export const PaneHeader = styled.div`
149150
`
150151

151152
export const PaneBody = styled.div`
153+
height: 100%;
152154
overflow: auto;
153155
margin: 14px 0;
154156
flex: 0 1 auto;

src/neo4j-arc/graph-visualization/GraphVisualizer/DefaultPanelContent/styled.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ export const NonClickableRelTypeChip = styled(StyledRelationshipChip)`
4646

4747
export const PaneWrapper = styled.div`
4848
padding: 0 14px;
49+
height: 100%;
4950
`
5051

5152
export const PaneHeader = styled.div`
@@ -55,6 +56,7 @@ export const PaneHeader = styled.div`
5556
`
5657

5758
export const PaneBody = styled.div`
59+
height: 100%;
5860
overflow: auto;
5961
margin: 14px 0;
6062
flex: 0 1 auto;

0 commit comments

Comments
 (0)