diff options
| author | bobzel <zzzman@gmail.com> | 2023-07-05 16:15:27 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2023-07-05 16:15:27 -0400 |
| commit | 5a9af979cc293d0e3843270ee053c24bf0eb6ef5 (patch) | |
| tree | 1c03d5fb55a97f5e3da96a448af5079ec2b0e42b /src/client/views/collections/collectionFreeForm | |
| parent | bf609fdadc164da5663671a0c42c3a13056ee376 (diff) | |
changed acl inheritance for docking views.
Diffstat (limited to 'src/client/views/collections/collectionFreeForm')
| -rw-r--r-- | src/client/views/collections/collectionFreeForm/MarqueeView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/collectionFreeForm/MarqueeView.tsx b/src/client/views/collections/collectionFreeForm/MarqueeView.tsx index 9b0abc48b..764b1e08a 100644 --- a/src/client/views/collections/collectionFreeForm/MarqueeView.tsx +++ b/src/client/views/collections/collectionFreeForm/MarqueeView.tsx @@ -392,7 +392,7 @@ export class MarqueeView extends React.Component<SubCollectionViewProps & Marque newCollection.layout_fitWidth = true; newCollection['acl-Public'] = Doc.defaultAclPrivate ? SharingPermissions.None : SharingPermissions.Augment; selected.forEach(d => { - d.embedContainer = newCollection; + Doc.SetContainer(d, newCollection); d['acl-Public'] = Doc.defaultAclPrivate ? SharingPermissions.None : SharingPermissions.Augment; }); this.hideMarquee(); |
