()
| 2638 | } |
| 2639 | |
| 2640 | showHelpPanel(): void { |
| 2641 | this.state.activeDialog = 'help'; |
| 2642 | this.mountEditorReplacement( |
| 2643 | new HelpPanelComponent({ |
| 2644 | commands: this.getSlashCommands(), |
| 2645 | onClose: () => { |
| 2646 | this.hideHelpPanel(); |
| 2647 | }, |
| 2648 | }), |
| 2649 | ); |
| 2650 | } |
| 2651 | |
| 2652 | private hideHelpPanel(): void { |
| 2653 | this.state.activeDialog = null; |
nothing calls this directly
no test coverage detected