Fix last tab is undefined

This commit is contained in:
Shin'ya Ueoka 2018-07-28 17:06:20 +09:00
parent b3dafedf88
commit 691e9ca8f2
3 changed files with 13 additions and 2 deletions

View file

@ -183,7 +183,9 @@ export default class OperationInteractor {
onTabSelected(tabId) {
let lastId = this.cache.get(CURRENT_SELECTED_KEY);
this.cache.set(LAST_SELECTED_KEY, lastId);
if (lastId) {
this.cache.set(LAST_SELECTED_KEY, lastId);
}
this.cache.set(CURRENT_SELECTED_KEY, tabId);
}
}