diff --git a/docs/en_US/release_notes_6_5.rst b/docs/en_US/release_notes_6_5.rst index 9e5c685bc..ae34d7503 100644 --- a/docs/en_US/release_notes_6_5.rst +++ b/docs/en_US/release_notes_6_5.rst @@ -23,6 +23,7 @@ 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 #7109 `_ - Make the size blank for all the directories in the file select dialog. | `Issue #7118 `_ - Ensure that JSON files should be downloaded properly from the storage manager. | `Issue #7123 `_ - Fixed an issue where restore generates incorrect options for the schema. | `Issue #7127 `_ - Added validation for Hostname in the server dialog. diff --git a/web/pgadmin/misc/file_manager/static/js/utility.js b/web/pgadmin/misc/file_manager/static/js/utility.js index 01d9ef21a..a59f2e1ae 100644 --- a/web/pgadmin/misc/file_manager/static/js/utility.js +++ b/web/pgadmin/misc/file_manager/static/js/utility.js @@ -492,8 +492,10 @@ define([ if (item_data.file_type == 'dir') { icon_type = 'fa fa-folder-open fm_folder_grid'; + props.Size = ''; } else if (item_data.file_type == 'drive') { icon_type = 'fa fa-hdd fm_drive'; + props.Size = ''; } else { icon_type = 'fa fa-file-alt fm_file_grid'; } @@ -591,9 +593,11 @@ define([ if (item_data.file_type == 'dir') { class_type = 'tbl_folder'; icon_type = 'fa fa-folder-open fm_folder_list'; + props.Size = ''; } else if (item_data.file_type == 'drive') { class_type = 'tbl_drive'; icon_type = 'fa fa-hdd'; + props.Size = ''; } else { class_type = 'tbl_file'; icon_type = 'fa fa-file-alt';