diff --git a/addon/manifest.json b/addon/manifest.json index a5ff7e6e..53cd05f9 100644 --- a/addon/manifest.json +++ b/addon/manifest.json @@ -8,7 +8,7 @@ }, "author": "mbnuqw", "name": "__MSG_ExtName__", - "version": "3.0.1", + "version": "3.0.2", "default_locale": "en", "description": "__MSG_ExtDesc__", "homepage_url": "https://github.com/mbnuqw/sidebery", diff --git a/package.json b/package.json index 1421ff46..5b585c2c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "sidebery", - "version": "3.0.1", + "version": "3.0.2", "description": "Manage your tabs and bookmarks in sidebar", "main": "index.js", "scripts": { diff --git a/src/sidebar/actions/tabs.js b/src/sidebar/actions/tabs.js index 531c8cd9..6097f583 100644 --- a/src/sidebar/actions/tabs.js +++ b/src/sidebar/actions/tabs.js @@ -1414,7 +1414,7 @@ function resetUpdateGroupTabTimeout() { function updateActiveGroupPage() { let activeTab = this.state.tabs.find(t => t.active) if (Utils.isGroupUrl(activeTab.url)) { - this.actions.updateGroupTab(updateGroupTab) + this.actions.updateGroupTab(activeTab) } }