diff options
| author | usodhi <61431818+usodhi@users.noreply.github.com> | 2020-07-10 18:24:32 +0530 |
|---|---|---|
| committer | usodhi <61431818+usodhi@users.noreply.github.com> | 2020-07-10 18:24:32 +0530 |
| commit | 6f985b10f71ace2303b669d4e2a1165ff3a29eda (patch) | |
| tree | 7d276fe0c8afc26d6cdad2d22ded748d2b551d43 /src/client/views/collections/CollectionView.tsx | |
| parent | 07569b4901f6715ed970c3d96e36de7c30b323a6 (diff) | |
added _chromeStatus to playground fields
Diffstat (limited to 'src/client/views/collections/CollectionView.tsx')
| -rw-r--r-- | src/client/views/collections/CollectionView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/CollectionView.tsx b/src/client/views/collections/CollectionView.tsx index 34d67905e..47b6dc058 100644 --- a/src/client/views/collections/CollectionView.tsx +++ b/src/client/views/collections/CollectionView.tsx @@ -136,7 +136,7 @@ export class CollectionView extends Touchable<FieldViewProps & CollectionViewCus if (added.length) { if (effectiveAcl === AclReadonly && !getPlaygroundMode()) { return false; - } else if (effectiveAcl === AclAddonly && !getPlaygroundMode()) { + } else if (effectiveAcl === AclAddonly) { added.map(doc => Doc.AddDocToList(targetDataDoc, this.props.fieldKey, doc)); } else { added.map(doc => { |
