Skip to content

Commit

Permalink
Merge pull request #2856 from nextcloud/fix/inherited-acl-display
Browse files Browse the repository at this point in the history
fix: fix fully inherited acl state not being show as inherited
  • Loading branch information
icewind1991 authored Mar 13, 2024
2 parents a3a6705 + 815980b commit 68d2fa6
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 68d2fa6

Please sign in to comment.