Fix error on keyword not found

This commit is contained in:
Shin'ya Ueoka 2018-07-28 22:51:58 +09:00
parent ed2bd7d75e
commit f914d76ce8
4 changed files with 11 additions and 7 deletions

View file

@ -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) {