aboutsummaryrefslogtreecommitdiff
path: root/src/client/util/CurrentUserUtils.ts
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2020-08-17 13:47:20 -0400
committerGitHub <noreply@github.com>2020-08-17 13:47:20 -0400
commit32e4751eb2d0506b11405ace2c03213515e736cb (patch)
treefb68e95fc8c81b3e2640159480f38a612f45ebe4 /src/client/util/CurrentUserUtils.ts
parent227888ecdd9e83b9a2d99cb93890ae018274ea4d (diff)
parent2c1e3a0c657914c7426ac7347bdb2781e1fa49bd (diff)
Merge pull request #619 from browngraphicslab/acls_uv
Hopefully final acls change
Diffstat (limited to 'src/client/util/CurrentUserUtils.ts')
-rw-r--r--src/client/util/CurrentUserUtils.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/util/CurrentUserUtils.ts b/src/client/util/CurrentUserUtils.ts
index 647efeec0..5d747584a 100644
--- a/src/client/util/CurrentUserUtils.ts
+++ b/src/client/util/CurrentUserUtils.ts
@@ -868,7 +868,7 @@ export class CurrentUserUtils {
// Sharing sidebar is where shared documents are contained
static setupSharingSidebar(doc: Doc) {
if (doc["sidebar-sharing"] === undefined) {
- doc["sidebar-sharing"] = new PrefetchProxy(Docs.Create.StackingDocument([], { title: "Shared Documents", childDropAction: "alias", system: true }));
+ doc["sidebar-sharing"] = new PrefetchProxy(Docs.Create.StackingDocument([], { title: "Shared Documents", childDropAction: "alias", system: true, _yMargin: 30, _showTitle: "title", ignoreClick: true, lockedPosition: true }));
}
}