We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad522eb commit afecf35Copy full SHA for afecf35
src/sidebar/actions/tabs.js
@@ -517,9 +517,8 @@ function saveTabsData(delay = 300) {
517
let pinnedLen = 0
518
for (let tab of this.state.tabs) {
519
if (tab.pinned) pinnedLen++
520
- let info = { id: tab.id, url: tab.url }
+ let info = { id: tab.id, url: tab.url, panelId: tab.panelId }
521
if (tab.parentId > -1) info.parentId = tab.parentId
522
- if (tab.panelId !== DEFAULT_CTX_ID) info.panelId = tab.panelId
523
if (tab.folded) info.folded = tab.folded
524
if (tab.cookieStoreId !== DEFAULT_CTX_ID) info.ctx = tab.cookieStoreId
525
data.push(info)
0 commit comments