Fix indicate return values

This commit is contained in:
Shin'ya Ueoka 2018-07-28 19:09:49 +09:00
parent 7cd606fd70
commit 6f4e327b6f
2 changed files with 2 additions and 2 deletions

View file

@ -6,6 +6,6 @@ export default class AddonEnabledController {
}
indicate(enabled) {
this.addonEnabledInteractor.indicate(enabled);
return this.addonEnabledInteractor.indicate(enabled);
}
}

View file

@ -15,7 +15,7 @@ export default class AddonEnabledInteractor {
}
indicate(enabled) {
this.indicatorPresentor.indicate(enabled);
return this.indicatorPresentor.indicate(enabled);
}
onIndicatorClick(tabId) {