diff --git a/docs/en_US/release_notes_5_3.rst b/docs/en_US/release_notes_5_3.rst index 735280ee5..4382e969a 100644 --- a/docs/en_US/release_notes_5_3.rst +++ b/docs/en_US/release_notes_5_3.rst @@ -38,3 +38,4 @@ Bug fixes | `Issue #6416 `_ - Added comment column in the properties panel for View and Materialized View collection node. | `Issue #6417 `_ - Fixed an issue where query editor is not being closed if the user clicks on the 'Don't Save' button. | `Issue #6420 `_ - Ensure that pgAdmin4 shut down completely on the Quit command. +| `Issue #6443 `_ - Fixed an issue where file dialog showing incorrect files for the selected file types. diff --git a/web/pgadmin/tools/sqleditor/static/js/sqleditor.js b/web/pgadmin/tools/sqleditor/static/js/sqleditor.js index a169a98c2..a25c00043 100644 --- a/web/pgadmin/tools/sqleditor/static/js/sqleditor.js +++ b/web/pgadmin/tools/sqleditor/static/js/sqleditor.js @@ -3847,7 +3847,7 @@ define('tools.querytool', [ // Open FileManager _open_select_file_manager: function() { var params = { - 'supported_types': ['sql'], // file types allowed + 'supported_types': ['*', 'sql'], // file types allowed 'dialog_type': 'select_file', // open select file dialog }; pgAdmin.FileManager.init();