Skip to content

Commit 189c817

Browse files
authored
fix: Improperly aligned unfolding sub-items in context menu in data browser (#2713)
1 parent 08a78a3 commit 189c817

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/ContextMenu/ContextMenu.react.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ const MenuSection = ({ level, items, path, setPath, hide }) => {
4242
const style = position
4343
? {
4444
left: position.x,
45-
top: position.y,
45+
top: position.y + path[level] * 30,
4646
maxHeight: '80vh',
4747
overflowY: 'scroll',
4848
opacity: 1,

0 commit comments

Comments
 (0)