Fixed the browser tree overlapping nodes and expansion issue. Fixes #6962

This commit is contained in:
Nikhil Mohite
2022-05-28 13:26:17 +05:30
committed by Akshay Joshi
parent 0bbe35a7f6
commit e3225b6565
3 changed files with 3 additions and 2 deletions

View File

@@ -100,7 +100,7 @@ var initBrowserTree = async (pgBrowser) => {
await render(
<FileTreeX model={treeModelX}
onReady={itemHandle} create={create} remove={remove} update={update}
height={_height} />
height={_height} disableCache={true} />
, document.getElementById('tree'));
}