diff --git a/src/components/AclStateButton.vue b/src/components/AclStateButton.vue index d2d3dd1eb..07c3fd35d 100644 --- a/src/components/AclStateButton.vue +++ b/src/components/AclStateButton.vue @@ -120,7 +120,7 @@ export default { return this.state & 1 }, isInherited() { - return (this.state & 2) === 0 + return this.inherited || (this.state & 2) === 0 }, icon() { switch (this.state) {