diff options
author | bobzel <zzzman@gmail.com> | 2020-10-12 12:53:40 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2020-10-12 12:53:40 -0400 |
commit | 04bbff759710d58fa97ce2f0d685ec59b6beb60e (patch) | |
tree | 7a2228d8559c873aab69782ccfda42c5c88438f5 /src/client/views/DocComponent.tsx | |
parent | 7ede13ca2df4e3889693e33b3f3100b04546d865 (diff) |
split getEffectiveAcl code for determining if a field can be modified out into getPropAcl.
Diffstat (limited to 'src/client/views/DocComponent.tsx')
-rw-r--r-- | src/client/views/DocComponent.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/DocComponent.tsx b/src/client/views/DocComponent.tsx index 98e888538..a55f4adaf 100644 --- a/src/client/views/DocComponent.tsx +++ b/src/client/views/DocComponent.tsx @@ -164,7 +164,7 @@ export function ViewBoxAnnotatableComponent<P extends ViewBoxAnnotatableProps, T return false; } else { - if (this.props.Document[AclSym]) { + if (this.props.Document[AclSym] && Object.keys(this.props.Document[AclSym]).length) { added.forEach(d => { for (const [key, value] of Object.entries(this.props.Document[AclSym])) { if (d.author === denormalizeEmail(key.substring(4)) && !d.aliasOf) distributeAcls(key, SharingPermissions.Admin, d, true); |