diff options
| author | bobzel <zzzman@gmail.com> | 2020-08-04 14:58:18 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2020-08-04 14:58:18 -0400 |
| commit | 993645831cd5d908f8778e0cef6ae23e80169cf3 (patch) | |
| tree | 872b40f839d1f4e35fd62649b806174c63f7a298 /src/client/util | |
| parent | a877769b004eb7cd3563167562b084cf64dc8b65 (diff) | |
fixed stackingview to use layoutDoc not props.Document
Diffstat (limited to 'src/client/util')
| -rw-r--r-- | src/client/util/CurrentUserUtils.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/util/CurrentUserUtils.ts b/src/client/util/CurrentUserUtils.ts index ebef07e38..ab9d74391 100644 --- a/src/client/util/CurrentUserUtils.ts +++ b/src/client/util/CurrentUserUtils.ts @@ -773,12 +773,12 @@ export class CurrentUserUtils { // setup the list of sidebar mode buttons which determine what is displayed in the sidebar static async setupSidebarButtons(doc: Doc) { + this.setupSidebarContainer(doc); await CurrentUserUtils.setupToolsBtnPanel(doc); CurrentUserUtils.setupWorkspaces(doc); CurrentUserUtils.setupCatalog(doc); CurrentUserUtils.setupRecentlyClosed(doc); CurrentUserUtils.setupUserDoc(doc); - this.setupSidebarContainer(doc); } static blist = (opts: DocumentOptions, docs: Doc[]) => new PrefetchProxy(Docs.Create.LinearDocument(docs, { |
