diff options
author | usodhi <61431818+usodhi@users.noreply.github.com> | 2020-07-21 23:16:49 +0530 |
---|---|---|
committer | usodhi <61431818+usodhi@users.noreply.github.com> | 2020-07-21 23:16:49 +0530 |
commit | 3d06cdd362d58dfbc8d6efdcd9dc59250ab003a4 (patch) | |
tree | d2d261ff2c727be5f774cd01ced2d13f3ee4250b /src/client/views/DocComponent.tsx | |
parent | 35d50f895b59162f40cea644f97818579aace9e5 (diff) |
distributeAcls only changes if container is more restrictive
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 655be80ef..95c1bcda8 100644 --- a/src/client/views/DocComponent.tsx +++ b/src/client/views/DocComponent.tsx @@ -165,7 +165,7 @@ export function ViewBoxAnnotatableComponent<P extends ViewBoxAnnotatableProps, T }); } if (effectiveAcl === AclAddonly) { - added.map(doc => console.log(Doc.AddDocToList(targetDataDoc, this.annotationKey, doc))); + added.map(doc => Doc.AddDocToList(targetDataDoc, this.annotationKey, doc)); } else { added.map(doc => doc.context = this.props.Document); |