Fix error on keyword not found
This commit is contained in:
parent
ed2bd7d75e
commit
f914d76ce8
4 changed files with 11 additions and 7 deletions
|
@ -126,7 +126,7 @@ export default class OperationInteractor {
|
|||
|
||||
async showCommand() {
|
||||
let tab = await this.tabPresenter.getCurrent();
|
||||
this.consolePresenter.showCommand(tab.id, '');
|
||||
return this.consolePresenter.showCommand(tab.id, '');
|
||||
}
|
||||
|
||||
async showOpenCommand(alter) {
|
||||
|
@ -173,12 +173,12 @@ export default class OperationInteractor {
|
|||
|
||||
async findStart() {
|
||||
let tab = await this.tabPresenter.getCurrent();
|
||||
this.consolePresenter.showFind(tab.id);
|
||||
return this.consolePresenter.showFind(tab.id);
|
||||
}
|
||||
|
||||
async hideConsole() {
|
||||
let tab = await this.tabPresenter.getCurrent();
|
||||
this.consolePresenter.hide(tab.id);
|
||||
return this.consolePresenter.hide(tab.id);
|
||||
}
|
||||
|
||||
onTabSelected(tabId) {
|
||||
|
|
Reference in a new issue