Fixed the browser tree overlapping nodes and expansion issue. Fixes #6962
parent
0bbe35a7f6
commit
e3225b6565
|
@ -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.
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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'));
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue