diff --git a/docs/en_US/release_notes_6_1.rst b/docs/en_US/release_notes_6_1.rst index fe26557e7..aa7a88782 100644 --- a/docs/en_US/release_notes_6_1.rst +++ b/docs/en_US/release_notes_6_1.rst @@ -23,6 +23,7 @@ Bug fixes | `Issue #6719 `_ - Fixed OAuth2 integration redirect issue. | `Issue #6754 `_ - Ensure that query highlighting color in the query tool should be less intensive. +| `Issue #6776 `_ - Changed the label 'Inherits Tables?' to 'Is inherited?' as it misleading in the properties panel. | `Issue #6790 `_ - Fixed an issue where the user is unable to create an index with concurrently keyword. | `Issue #6797 `_ - Remove an extra blank line at the start of the SQL for function, procedure, and trigger function. | `Issue #6828 `_ - Fixed an issue where the tree is not scrolling to the object selected from the search result. diff --git a/web/pgadmin/browser/server_groups/servers/databases/schemas/tables/partitions/static/js/partition.ui.js b/web/pgadmin/browser/server_groups/servers/databases/schemas/tables/partitions/static/js/partition.ui.js index 62aa57c4b..303615476 100644 --- a/web/pgadmin/browser/server_groups/servers/databases/schemas/tables/partitions/static/js/partition.ui.js +++ b/web/pgadmin/browser/server_groups/servers/databases/schemas/tables/partitions/static/js/partition.ui.js @@ -264,7 +264,7 @@ export default class PartitionTableSchema extends BaseUISchema { }, }, },{ - id: 'relhassubclass', label: gettext('Inherits tables?'), cell: 'switch', + id: 'relhassubclass', label: gettext('Is inherited?'), cell: 'switch', type: 'switch', mode: ['properties'], group: 'advanced', disabled: this.inCatalog, },{ diff --git a/web/pgadmin/browser/server_groups/servers/databases/schemas/tables/static/js/table.ui.js b/web/pgadmin/browser/server_groups/servers/databases/schemas/tables/static/js/table.ui.js index 1290e6ce3..5d8d1d039 100644 --- a/web/pgadmin/browser/server_groups/servers/databases/schemas/tables/static/js/table.ui.js +++ b/web/pgadmin/browser/server_groups/servers/databases/schemas/tables/static/js/table.ui.js @@ -779,7 +779,7 @@ export default class TableSchema extends BaseUISchema { }, }, },{ - id: 'relhassubclass', label: gettext('Inherits tables?'), cell: 'switch', + id: 'relhassubclass', label: gettext('Is inherited?'), cell: 'switch', type: 'switch', mode: ['properties'], group: 'advanced', disabled: this.inCatalog, },{