Skip to content

Commit

Permalink
fix: file tree height
Browse files Browse the repository at this point in the history
  • Loading branch information
devcatalin committed Oct 5, 2023
1 parent b35c8c3 commit f2934c5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ const FileSystemTree: React.FC = () => {
);
}}
treeData={treeData}
height={containerHeight}
height={containerHeight - 100}
titleRender={node => <FileSystemTreeNode node={node} />}
selectedKeys={
selectedFilePath ? [selectedFilePath] : firstHighlightedFile ? [firstHighlightedFile.filePath] : []
Expand Down

0 comments on commit f2934c5

Please sign in to comment.