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

@ -20,6 +20,7 @@ Housekeeping
Bug fixes
*********
| `Issue #6962 <https://redmine.postgresql.org/issues/6962>`_ - Fixed the browser tree overlapping nodes and expansion issue.
| `Issue #7002 <https://redmine.postgresql.org/issues/7002>`_ - Added the ability to detect and warn users about bidirectional Unicode characters.
| `Issue #7347 <https://redmine.postgresql.org/issues/7347>`_ - Ensure that when Authentication buttons are disabled their text is visible in the Dark and High contrast theme.
| `Issue #7368 <https://redmine.postgresql.org/issues/7368>`_ - Ensure that unwanted APIs should not be getting called for BigAnimal.

View File

@ -145,7 +145,7 @@
"path-fx": "^2.0.0",
"pathfinding": "^0.4.18",
"paths-js": "^0.4.9",
"pgadmin4-tree": "git+https://github.com/EnterpriseDB/pgadmin4-treeview/#2c288ccc0ae0c98b41e56e79abf1204be3861702",
"pgadmin4-tree": "git+https://github.com/EnterpriseDB/pgadmin4-treeview/#b0287d39b54de28cb2a83f0c19a95ce823f6feae",
"postcss": "^8.2.15",
"raf": "^3.4.1",
"rc-dock": "^3.2.9",

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'));
}