mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Fixed incorrect privileges value in Materialize View. Fixes #6781
This commit is contained in:
parent
a1aa080956
commit
05ce3445b5
@ -101,7 +101,7 @@ export default class MViewSchema extends BaseUISchema {
|
||||
},
|
||||
{
|
||||
id: 'datacl', label: gettext('Privileges'), type: 'collection',
|
||||
schema: this.getPrivilegeRoleSchema(['U']),
|
||||
schema: this.getPrivilegeRoleSchema(['a', 'r', 'w', 'd', 'D', 'x', 't']),
|
||||
uniqueCol : ['grantee'],
|
||||
editable: false,
|
||||
group: gettext('Security'), mode: ['edit', 'create'],
|
||||
|
Loading…
Reference in New Issue
Block a user