fixes, cleaned up noise in the developer console

This commit is contained in:
zadam
2020-02-08 10:40:58 +01:00
parent 9acf723a9a
commit 81f4966a1a
12 changed files with 45 additions and 36 deletions

View File

@@ -88,7 +88,7 @@ class TabContext extends Component {
}
isActive() {
return this.appContext.activeTabId === this.tabId;
return this.tabManager.activeTabId === this.tabId;
}
getTabState() {
@@ -99,7 +99,7 @@ class TabContext extends Component {
return {
tabId: this.tabId,
notePath: this.notePath,
active: this.appContext.activeTabId === this.tabId
active: this.tabManager.activeTabId === this.tabId
}
}