diff options
| author | tschicke-brown <tyler_schicke@brown.edu> | 2019-03-18 14:07:18 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-03-18 14:07:18 -0400 |
| commit | 7d5bb60662dc6a879df261f9eafeda89d6574cd7 (patch) | |
| tree | 8275d70be6aa728de3fea9af76b9422464143227 /src/client/views/collections/CollectionDockingView.tsx | |
| parent | 861614569c2d72e0ee9a6a698f3978f609a3b2bc (diff) | |
| parent | be117e38a63a558684baa69f719787f11dfc3be3 (diff) | |
Merge pull request #65 from browngraphicslab/authentication
Authentication
Diffstat (limited to 'src/client/views/collections/CollectionDockingView.tsx')
| -rw-r--r-- | src/client/views/collections/CollectionDockingView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/CollectionDockingView.tsx b/src/client/views/collections/CollectionDockingView.tsx index ba9e8c29f..19788447e 100644 --- a/src/client/views/collections/CollectionDockingView.tsx +++ b/src/client/views/collections/CollectionDockingView.tsx @@ -144,7 +144,7 @@ export class CollectionDockingView extends React.Component<SubCollectionViewProp if (this._containerRef.current) { reaction( () => this.props.Document.GetText(KeyStore.Data, ""), - () => this.setupGoldenLayout(), { fireImmediately: true }); + () => setTimeout(() => this.setupGoldenLayout(), 1), { fireImmediately: true }); window.addEventListener('resize', this.onResize); // bcz: would rather add this event to the parent node, but resize events only come from Window } |
