diff options
author | Bob Zeleznik <zzzman@gmail.com> | 2019-03-18 22:24:26 -0400 |
---|---|---|
committer | Bob Zeleznik <zzzman@gmail.com> | 2019-03-18 22:24:26 -0400 |
commit | 26b200a640290877b4766ce1e3361ccd3d0ea766 (patch) | |
tree | bb5641930f69a189932e08a376f9ba2cb16c9abf /src/client/views/Main.tsx | |
parent | e89d98ead149bf241e9733a17ab3a5e336d2a121 (diff) |
fixed duplicated menu items.
Diffstat (limited to 'src/client/views/Main.tsx')
-rw-r--r-- | src/client/views/Main.tsx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/client/views/Main.tsx b/src/client/views/Main.tsx index 26a07fdfe..d103bf34a 100644 --- a/src/client/views/Main.tsx +++ b/src/client/views/Main.tsx @@ -52,11 +52,13 @@ export class Main extends React.Component { @observable public pwidth: number = 0; @observable public pheight: number = 0; - private mainDocId: string | undefined; + public mainDocId: string | undefined; private currentUser?: DashUserModel; + public static Instance: Main; constructor(props: Readonly<{}>) { super(props); + Main.Instance = this; // causes errors to be generated when modifying an observable outside of an action configure({ enforceActions: "observed" }); if (window.location.pathname !== RouteStore.home) { |