mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-01-24 15:26:46 -06:00
Fixed an issue where file dialog showing incorrect files for the selected file types. Fixes #6443
This commit is contained in:
parent
0bb40de1c4
commit
7ed97eeec4
@ -38,3 +38,4 @@ Bug fixes
|
||||
| `Issue #6416 <https://redmine.postgresql.org/issues/6416>`_ - Added comment column in the properties panel for View and Materialized View collection node.
|
||||
| `Issue #6417 <https://redmine.postgresql.org/issues/6417>`_ - Fixed an issue where query editor is not being closed if the user clicks on the 'Don't Save' button.
|
||||
| `Issue #6420 <https://redmine.postgresql.org/issues/6420>`_ - Ensure that pgAdmin4 shut down completely on the Quit command.
|
||||
| `Issue #6443 <https://redmine.postgresql.org/issues/6443>`_ - Fixed an issue where file dialog showing incorrect files for the selected file types.
|
||||
|
@ -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();
|
||||
|
Loading…
Reference in New Issue
Block a user