Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
beyaz committed Sep 8, 2024
1 parent dd97a82 commit d041cf0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ReactWithDotNet/UIDesigner/MethodSelectionView.cs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ protected override Element render()
content = AsTreeView(nodes);
}

return new div(HeightFull, OverflowYScroll, CursorPointer, Padding(5), Border(1,solid, rgb(217, 217, 217)), BorderRadius(3))
return new div(HeightFull, OverflowAuto, CursorPointer, Padding(5), Border(1, solid, rgb(217, 217, 217)), BorderRadius(3))
{
content
};
Expand Down
2 changes: 1 addition & 1 deletion ReactWithDotNet/UIDesigner/ReactWithDotNetDesigner.cs
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ protected override Element render()
}
},

new FlexColumn(WidthFull, Flex(1, 1, 0), PaddingLeftRight(3))
new FlexColumn(WidthFull, Flex(1, 1, 0), PaddingLeftRight(3), OverflowAuto)
{
new MethodSelectionView
{
Expand Down

0 comments on commit d041cf0

Please sign in to comment.