Ensure that multiple extensions can be dropped from the properties tab. Fixes #5839.

This commit is contained in:
Akshay Joshi
2020-09-21 10:09:41 +05:30
parent 553be14000
commit 3489f94ca7
2 changed files with 4 additions and 3 deletions

View File

@@ -93,7 +93,7 @@ define('pgadmin.node.extension', [
* of the model in schema.
*/
model: pgAdmin.Browser.Node.Model.extend({
idAttribute: 'eid',
idAttribute: 'oid',
schema: [
{
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'],
},
{