diff --git a/docs/en_US/release_notes_6_2.rst b/docs/en_US/release_notes_6_2.rst index 730d76ef1..edc46057d 100644 --- a/docs/en_US/release_notes_6_2.rst +++ b/docs/en_US/release_notes_6_2.rst @@ -23,6 +23,7 @@ Bug fixes | `Issue #6780 `_ - Ensure that columns should be merged if the newly added column is present in the parent table. | `Issue #6809 `_ - Fixed an issue where pgAdmin is not opening properly. | `Issue #6832 `_ - Ensure that internal authentication when combined with other authentication providers, the order of internal source should not matter while picking up the provider. +| `Issue #6845 `_ - Ensure that inherit table icon should be visible properly in the tree view. | `Issue #6859 `_ - Fixed an issue where properties panel is not updated when any object is added from the browser tree. | `Issue #6905 `_ - Fixed an issue where database nodes are not getting loaded behind a reverse proxy with SSL. | `Issue #6925 `_ - Fixed SQL syntax error if select "Custom auto-vacuum" option and not set Autovacuum option to Yes or No. diff --git a/web/pgadmin/browser/server_groups/servers/databases/schemas/tables/__init__.py b/web/pgadmin/browser/server_groups/servers/databases/schemas/tables/__init__.py index 2dcb6ca3c..74b60fd13 100644 --- a/web/pgadmin/browser/server_groups/servers/databases/schemas/tables/__init__.py +++ b/web/pgadmin/browser/server_groups/servers/databases/schemas/tables/__init__.py @@ -319,19 +319,19 @@ class TableView(BaseTableView, DataTypeReader, SchemaDiffTableCompare): def get_icon_css_class(self, table_info, default_val='icon-table'): if ('is_inherits' in table_info and - table_info['is_inherits'] == '1') or \ + table_info['is_inherits'] > '0') or \ ('coll_inherits' in table_info and len(table_info['coll_inherits']) > 0): if ('is_inherited' in table_info and - table_info['is_inherited'] == '1')\ + table_info['is_inherited'] > '0')\ or ('relhassubclass' in table_info and table_info['relhassubclass']): default_val = 'icon-table-multi-inherit' else: default_val = 'icon-table-inherits' elif ('is_inherited' in table_info and - table_info['is_inherited'] == '1')\ + table_info['is_inherited'] > '0')\ or ('relhassubclass' in table_info and table_info['relhassubclass']): default_val = 'icon-table-inherited'