Fix indicate return values
This commit is contained in:
parent
7cd606fd70
commit
6f4e327b6f
2 changed files with 2 additions and 2 deletions
|
@ -6,6 +6,6 @@ export default class AddonEnabledController {
|
||||||
}
|
}
|
||||||
|
|
||||||
indicate(enabled) {
|
indicate(enabled) {
|
||||||
this.addonEnabledInteractor.indicate(enabled);
|
return this.addonEnabledInteractor.indicate(enabled);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -15,7 +15,7 @@ export default class AddonEnabledInteractor {
|
||||||
}
|
}
|
||||||
|
|
||||||
indicate(enabled) {
|
indicate(enabled) {
|
||||||
this.indicatorPresentor.indicate(enabled);
|
return this.indicatorPresentor.indicate(enabled);
|
||||||
}
|
}
|
||||||
|
|
||||||
onIndicatorClick(tabId) {
|
onIndicatorClick(tabId) {
|
||||||
|
|
Reference in a new issue