aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2020-10-06 21:01:44 -0400
committerbobzel <zzzman@gmail.com>2020-10-06 21:01:44 -0400
commitf6ff002d4b0ede04a2e2751677078b31763c780d (patch)
tree55874095ae31e677b65594609e64dbdbf9567e52 /src
parent647ca3d121921580090d5fc5c1fbaa7ae666992c (diff)
set default user color explicitly
Diffstat (limited to 'src')
-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 144c4b804..1096b8e5f 100644
--- a/src/client/util/CurrentUserUtils.ts
+++ b/src/client/util/CurrentUserUtils.ts
@@ -884,7 +884,7 @@ export class CurrentUserUtils {
(sharedDocs as Doc)["acl-Public"] = Doc.GetProto(sharedDocs as Doc)["acl-Public"] = SharingPermissions.Add;
}
if (sharedDocs instanceof Doc) {
- sharedDocs.userColor = sharedDocs.userColor || "#121212";
+ sharedDocs.userColor = sharedDocs.userColor || "rgb(202, 202, 202)";
}
doc.mySharedDocs = new PrefetchProxy(sharedDocs);
}