ui: Disabling policy form fields from users with 'read' permissions (#10902)
This commit is contained in:
parent
9b2dd8b155
commit
82f52283c5
|
@ -0,0 +1,3 @@
|
||||||
|
```release-note:bug
|
||||||
|
ui: Disabling policy form fields from users with 'read' permissions
|
||||||
|
```
|
|
@ -16,7 +16,7 @@ export default class PolicyAbility extends BaseAbility {
|
||||||
return (
|
return (
|
||||||
this.env.var('CONSUL_ACLS_ENABLED') &&
|
this.env.var('CONSUL_ACLS_ENABLED') &&
|
||||||
(typeof this.item === 'undefined' || typeOf([this.item]) !== 'policy-management') &&
|
(typeof this.item === 'undefined' || typeOf([this.item]) !== 'policy-management') &&
|
||||||
super.canRead
|
super.canWrite
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue