Changed the label 'Inherits Tables?' to 'Is inherited?' as it misleading in the properties panel. Fixes #6776
parent
9ace229152
commit
6c692df118
|
@ -23,6 +23,7 @@ Bug fixes
|
|||
|
||||
| `Issue #6719 <https://redmine.postgresql.org/issues/6719>`_ - Fixed OAuth2 integration redirect issue.
|
||||
| `Issue #6754 <https://redmine.postgresql.org/issues/6754>`_ - Ensure that query highlighting color in the query tool should be less intensive.
|
||||
| `Issue #6776 <https://redmine.postgresql.org/issues/6776>`_ - Changed the label 'Inherits Tables?' to 'Is inherited?' as it misleading in the properties panel.
|
||||
| `Issue #6790 <https://redmine.postgresql.org/issues/6790>`_ - Fixed an issue where the user is unable to create an index with concurrently keyword.
|
||||
| `Issue #6797 <https://redmine.postgresql.org/issues/6797>`_ - Remove an extra blank line at the start of the SQL for function, procedure, and trigger function.
|
||||
| `Issue #6828 <https://redmine.postgresql.org/issues/6828>`_ - Fixed an issue where the tree is not scrolling to the object selected from the search result.
|
||||
|
|
|
@ -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,
|
||||
},{
|
||||
|
|
|
@ -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,
|
||||
},{
|
||||
|
|
Loading…
Reference in New Issue