aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/PropertiesView.tsx
diff options
context:
space:
mode:
authorsrichman333 <sarah_n_richman@brown.edu>2023-06-23 12:05:24 -0400
committersrichman333 <sarah_n_richman@brown.edu>2023-06-23 12:05:24 -0400
commita807da6b6fed067888f817e2273b29b8b6219e52 (patch)
treef7294a1e2f6e267d9c9d0b96f8a99adf9e3c7bf1 /src/client/views/PropertiesView.tsx
parent32239432b79664f577bf0c84d4688c4e5cf7f14f (diff)
fixed collection acls
Diffstat (limited to 'src/client/views/PropertiesView.tsx')
-rw-r--r--src/client/views/PropertiesView.tsx2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/client/views/PropertiesView.tsx b/src/client/views/PropertiesView.tsx
index 6bca08d23..d5d09389f 100644
--- a/src/client/views/PropertiesView.tsx
+++ b/src/client/views/PropertiesView.tsx
@@ -425,8 +425,6 @@ export class PropertiesView extends React.Component<PropertiesViewProps> {
* @returns the sharing and permissions panel.
*/
@computed get sharingTable() {
- console.log('doc', this.selectedDoc)
- console.log('proto', Doc.GetProto(this.selectedDoc!))
// all selected docs
const docs =
SelectionManager.Views().length < 2 && this.selectedDoc ? [this.layoutDocAcls ? this.selectedDoc : this.dataDoc!] : SelectionManager.Views().map(docView => (this.layoutDocAcls ? docView.props.Document : docView.props.Document[DocData]));