Add support for opening document sidebar (comments,history,insights) on mobile

This commit is contained in:
Tom Moor
2023-03-09 18:58:50 -05:00
parent 96c90dbb29
commit a3d93c12e0
5 changed files with 48 additions and 50 deletions

View File

@@ -42,9 +42,6 @@ class UiStore {
@observable
observingUserId: string | undefined;
@observable
commandBarOpenedFromSidebar = false;
@observable
progressBarVisible = false;
@@ -236,16 +233,6 @@ class UiStore {
this.mobileSidebarVisible = !this.mobileSidebarVisible;
};
@action
commandBarOpened = () => {
this.commandBarOpenedFromSidebar = true;
};
@action
commandBarClosed = () => {
this.commandBarOpenedFromSidebar = false;
};
@action
hideMobileSidebar = () => {
this.mobileSidebarVisible = false;