mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Ensure that multiple extensions can be dropped from the properties tab. Fixes #5839.
This commit is contained in:
parent
553be14000
commit
3489f94ca7
@ -19,4 +19,5 @@ Bug fixes
|
|||||||
|
|
||||||
| `Issue #5417 <https://redmine.postgresql.org/issues/5417>`_ - Fixed and improve API test cases for the schema diff tool.
|
| `Issue #5417 <https://redmine.postgresql.org/issues/5417>`_ - Fixed and improve API test cases for the schema diff tool.
|
||||||
| `Issue #5802 <https://redmine.postgresql.org/issues/5802>`_ - Remove maximum length on the password field in the server dialog.
|
| `Issue #5802 <https://redmine.postgresql.org/issues/5802>`_ - Remove maximum length on the password field in the server dialog.
|
||||||
| `Issue #5807 <https://redmine.postgresql.org/issues/5807>`_ - Fixed an issue where a column is renamed and then removed, then the drop SQL query takes the wrong column name.
|
| `Issue #5807 <https://redmine.postgresql.org/issues/5807>`_ - Fixed an issue where a column is renamed and then removed, then the drop SQL query takes the wrong column name.
|
||||||
|
| `Issue #5839 <https://redmine.postgresql.org/issues/5839>`_ - Ensure that multiple extensions can be dropped from the properties tab.
|
@ -93,7 +93,7 @@ define('pgadmin.node.extension', [
|
|||||||
* of the model in schema.
|
* of the model in schema.
|
||||||
*/
|
*/
|
||||||
model: pgAdmin.Browser.Node.Model.extend({
|
model: pgAdmin.Browser.Node.Model.extend({
|
||||||
idAttribute: 'eid',
|
idAttribute: 'oid',
|
||||||
schema: [
|
schema: [
|
||||||
{
|
{
|
||||||
id: 'name', label: gettext('Name'), first_empty: true,
|
id: 'name', label: gettext('Name'), first_empty: true,
|
||||||
@ -181,7 +181,7 @@ define('pgadmin.node.extension', [
|
|||||||
}),
|
}),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 'eid', label: gettext('OID'), cell: 'string',
|
id: 'oid', label: gettext('OID'), cell: 'string',
|
||||||
type: 'text', mode: ['properties'],
|
type: 'text', mode: ['properties'],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user