diff options
author | bobzel <zzzman@gmail.com> | 2020-08-13 09:10:52 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-13 09:10:52 -0400 |
commit | bd98627b531a1bef084533c1e70783b03d288f0d (patch) | |
tree | 77e0f8bb0e0ced1276283090b1d33c2f0f33f24c /src/client/views/MainView.tsx | |
parent | 2d3f72210df626f099379f2f2c6e47fb1d415d82 (diff) | |
parent | 7d4867438fa2aa55a58184649f4e5042a68a3fd9 (diff) |
Merge pull request #589 from browngraphicslab/acls_uv
Notification bubble location fix
Diffstat (limited to 'src/client/views/MainView.tsx')
-rw-r--r-- | src/client/views/MainView.tsx | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/client/views/MainView.tsx b/src/client/views/MainView.tsx index be8807336..9fae3996e 100644 --- a/src/client/views/MainView.tsx +++ b/src/client/views/MainView.tsx @@ -310,11 +310,7 @@ export class MainView extends React.Component { DocServer.Control.makeEditable(); } } - // if there is a pending doc, and it has new data, show it (syip: we use a timeout to prevent collection docking view from being uninitialized) - setTimeout(async () => { - const col = this.userDoc && await Cast(this.userDoc["sidebar-sharing"], Doc); - col && Cast(col.data, listSpec(Doc)) && runInAction(() => MainViewNotifs.NotifsCol = col); - }, 100); + return true; } @@ -612,7 +608,6 @@ export class MainView extends React.Component { </div> </div> {this.dockingContent} - <MainViewNotifs /> {this.showProperties ? (null) : <div className="mainView-propertiesDragger" title="Properties View Dragger" onPointerDown={this.onPropertiesPointerDown} style={{ right: rightFlyout, top: "50%" }}> |