Skip to content

Commit 8c561a7

Browse files
committedMar 24, 2025
Fixed pinning tabs rendering the browser useles (closes #6708)
1 parent bd5d3c0 commit 8c561a7

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed
 

‎src/browser/base/zen-components/ZenWorkspaces.mjs

+5-1
Original file line numberDiff line numberDiff line change
@@ -2291,7 +2291,11 @@ var ZenWorkspaces = new (class extends ZenMultiWindowFeature {
22912291
if (!this._hasInitializedTabsStrip) {
22922292
const children = this.tabboxChildren;
22932293
children.pop(); // Remove the last child which is the new tab button
2294-
return children;
2294+
return [
2295+
...document.querySelectorAll('#zen-essentials-container tab'),
2296+
...document.querySelectorAll('#vertical-pinned-tabs-container tab'),
2297+
...children,
2298+
];
22952299
}
22962300

22972301
if (this._allStoredTabs) {

0 commit comments

Comments
 (0)
Failed to load comments.