diff --git a/docs/en_US/release_notes_6_5.rst b/docs/en_US/release_notes_6_5.rst index 00897028a..a11b99717 100644 --- a/docs/en_US/release_notes_6_5.rst +++ b/docs/en_US/release_notes_6_5.rst @@ -23,5 +23,6 @@ Bug fixes | `Issue #7035 `_ - Fixed an issue where connections keep open to (closed) connections on the initial connection to the database server. | `Issue #7085 `_ - Ensure that Partitioned tables should be visible correctly when creating multiple partition levels. | `Issue #7100 `_ - Fixed an issue where the Browser tree gets disappears when scrolling sequences. +| `Issue #7123 `_ - Fixed an issue where restore generates incorrect options for the schema. | `Issue #7127 `_ - Added validation for Hostname in the server dialog. | `Issue #7135 `_ - Enforce the minimum Windows version that the installer will run on. diff --git a/web/pgadmin/tools/restore/static/js/restore.js b/web/pgadmin/tools/restore/static/js/restore.js index d8a7b04e2..24cf07844 100644 --- a/web/pgadmin/tools/restore/static/js/restore.js +++ b/web/pgadmin/tools/restore/static/js/restore.js @@ -105,7 +105,7 @@ define('tools.restore', [ extraData['database'] = treeInfo.database._label; if('schema' in treeInfo) { - extraData['schemas'] = treeInfo.schema._label; + extraData['schemas'] = [treeInfo.schema._label]; } if('table' in treeInfo) {