diff --git a/docs/en_US/release_notes_6_9.rst b/docs/en_US/release_notes_6_9.rst index fc1bea2ba..0416951d2 100644 --- a/docs/en_US/release_notes_6_9.rst +++ b/docs/en_US/release_notes_6_9.rst @@ -9,23 +9,24 @@ This release contains a number of bug fixes and new features since the release o New features ************ - | `Issue #3253 `_ - Added status bar to the Query Tool. - | `Issue #3989 `_ - Ensure that row numbers should be visible in view when scrolling horizontally. - | `Issue #6830 `_ - Relocate GIS Viewer Button to the Left Side of the Results Table. + | `Issue #3253 `_ - Added status bar to the Query Tool. + | `Issue #3989 `_ - Ensure that row numbers should be visible in view when scrolling horizontally. + | `Issue #6830 `_ - Relocate GIS Viewer Button to the Left Side of the Results Table. Housekeeping ************ - | `Issue #6131 `_ - Port query tool to React. + | `Issue #6131 `_ - Port query tool to React. Bug fixes ********* - | `Issue #6725 `_ - Fixed an issue where the Query tool opens on minimum size if the user opens multiple query tool Window quickly. - | `Issue #7187 `_ - Fixed an issue where the downloaded ERD diagram was 0 bytes. - | `Issue #7188 `_ - Fixed an issue where the connection bar is not visible. - | `Issue #7231 `_ - Don't strip binaries when packaging them in the server RPM as this might break cpython modules. - | `Issue #7260 `_ - Fixed an issue where an Empty message popup after running a query. - | `Issue #7262 `_ - Ensure that Autocomplete should work after changing the connection. - | `Issue #7294 `_ - Fixed an issue where the copy and paste row does not work if the first column contains no data. + | `Issue #6725 `_ - Fixed an issue where the Query tool opens on minimum size if the user opens multiple query tool Window quickly. + | `Issue #7187 `_ - Fixed an issue where the downloaded ERD diagram was 0 bytes. + | `Issue #7188 `_ - Fixed an issue where the connection bar is not visible. + | `Issue #7231 `_ - Don't strip binaries when packaging them in the server RPM as this might break cpython modules. + | `Issue #7260 `_ - Fixed an issue where an Empty message popup after running a query. + | `Issue #7262 `_ - Ensure that Autocomplete should work after changing the connection. + | `Issue #7294 `_ - Fixed an issue where the copy and paste row does not work if the first column contains no data. + | `Issue #7296 `_ - Ensure that after deleting multiple objects from the properties panel, the browser tree should be refreshed. diff --git a/web/pgadmin/misc/properties/CollectionNodeProperties.jsx b/web/pgadmin/misc/properties/CollectionNodeProperties.jsx index 05aeef26d..9d340914d 100644 --- a/web/pgadmin/misc/properties/CollectionNodeProperties.jsx +++ b/web/pgadmin/misc/properties/CollectionNodeProperties.jsx @@ -162,12 +162,13 @@ export function CollectionNodeView({ if (res.success == 0) { pgBrowser.report_error(res.errormsg, res.info); } + pgAdmin.Browser.tree.refresh(selItem); setReload(!reload); }) .catch(function (error) { Notify.alert( gettext('Error dropping %s', selectedItemData._label.toLowerCase()), - error.response.data.errormsg + _.isUndefined(error.response) ? error.message : error.response.data.errormsg ); }); };