diff options
author | srichman333 <sarah_n_richman@brown.edu> | 2023-05-04 10:46:20 -0400 |
---|---|---|
committer | srichman333 <sarah_n_richman@brown.edu> | 2023-05-04 10:46:20 -0400 |
commit | 50876028b994044f2a9426a4efb85a363f0d7168 (patch) | |
tree | 00c3c0ccc93603a980da1cfa13fd6cec331f036d /src/client/views/Main.tsx | |
parent | d1e4d4a9daae4f037cf8b22e1011d97680a01e27 (diff) |
properties view + sharing manager are consistent, and all text updates properly
Diffstat (limited to 'src/client/views/Main.tsx')
-rw-r--r-- | src/client/views/Main.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/Main.tsx b/src/client/views/Main.tsx index 6b18caed0..7da9dc603 100644 --- a/src/client/views/Main.tsx +++ b/src/client/views/Main.tsx @@ -26,7 +26,7 @@ FieldLoader.ServerLoadStatus = { requested: 0, retrieved: 0 }; // bcz: not sure root.render(<FieldLoader />); window.location.search.includes('safe') && CollectionView.SetSafeMode(true); const info = await CurrentUserUtils.loadCurrentUser(); - if (info.email === 'guest') DocServer.Control.makeReadOnly(); + // if (info.email === 'guest') DocServer.Control.makeReadOnly(); await CurrentUserUtils.loadUserDocument(info.id); setTimeout(() => { document.getElementById('root')!.addEventListener( |