Skip to content

Commit

Permalink
fix: fix fully inherited acl state not being show as inherited
Browse files Browse the repository at this point in the history
Signed-off-by: Robin Appelman <robin@icewind.nl>
  • Loading branch information
icewind1991 committed Mar 12, 2024
1 parent 8899691 commit 815980b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/AclStateButton.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 815980b

Please sign in to comment.