We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a69041d commit 05f7dedCopy full SHA for 05f7ded
1 file changed
webextensions/sidebar/collapse-expand.js
@@ -55,7 +55,10 @@ export async function setCollapsed(tab, info = {}) {
55
if (!TabsStore.ensureLivingTab(tab)) // do nothing for closed tab!
56
return;
57
58
- const changed = info.collapsed != tab.$TST.collapsed;
+ const changed = (
59
+ info.collapsed != tab.$TST.collapsed ||
60
+ info.collapsed != tab.$TST.collapsedCompletely
61
+ );
62
63
tab.$TST.shouldExpandLater = false; // clear flag
64
0 commit comments