diff options
| author | bobzel <zzzman@gmail.com> | 2022-09-14 11:12:29 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2022-09-14 11:12:29 -0400 |
| commit | 65026fdb919132f6046b45fc3b0490df2e5ad2fe (patch) | |
| tree | 18c5261178ddbfca952056d37af29de38f033eea /src/client/views/topbar | |
| parent | d06a5b853557a5447ec308569443899c9064daf6 (diff) | |
changed docking view thumbnails to be imagefields, not docs. allowed docking view to be nested to avoid crashes before when they became nested. fixed dropping docs with dropAction of 'alias' to never remove them. fixed clearing startLink to not deselect when link is already started
Diffstat (limited to 'src/client/views/topbar')
| -rw-r--r-- | src/client/views/topbar/TopBar.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/views/topbar/TopBar.tsx b/src/client/views/topbar/TopBar.tsx index cbcfed06f..096b2561f 100644 --- a/src/client/views/topbar/TopBar.tsx +++ b/src/client/views/topbar/TopBar.tsx @@ -28,12 +28,12 @@ import { ReportManager } from '../../util/ReportManager'; @observer export class TopBar extends React.Component { navigateToHome = () => { - CollectionDockingView.Instance?.CaptureThumbnail()?.then(() => { + (CollectionDockingView.Instance?.CaptureThumbnail() ?? new Promise<void>(res => res())).then(() => { Doc.ActivePage = 'home'; DashboardView.closeActiveDashboard(); // bcz: if we do this, we need some other way to keep track, for user convenience, of the last dashboard in use }); }; - + render() { const activeDashboard = Doc.ActiveDashboard; return ( |
