diff --git a/src/public/app/components/root_command_executor.js b/src/public/app/components/root_command_executor.js index d60b080c1..917f45af4 100644 --- a/src/public/app/components/root_command_executor.js +++ b/src/public/app/components/root_command_executor.js @@ -100,6 +100,10 @@ export default class RootCommandExecutor extends Component { await this.showAndHoistSubtree('_search'); } + async showUserGuideCommand() { + await this.showAndHoistSubtree('_userGuide'); + } + async showAndHoistSubtree(subtreeNoteId) { await appContext.tabManager.openContextWithNote(subtreeNoteId, true, null, subtreeNoteId); } diff --git a/src/public/app/widgets/buttons/global_menu.js b/src/public/app/widgets/buttons/global_menu.js index 89adaabad..7cf669a4e 100644 --- a/src/public/app/widgets/buttons/global_menu.js +++ b/src/public/app/widgets/buttons/global_menu.js @@ -75,7 +75,7 @@ const TPL = ` margin-right: 5px; } - body.mobile .show-help-button, body.mobile .show-about-dialog-button { + body.mobile .show-user-guide-button, body.mobile .show-about-dialog-button { /* hidden because these dialogs are not available for mobile */ display: none; } @@ -194,10 +194,10 @@ const TPL = ` -