fix(electron): allow close pinned tab (#7732)

This commit is contained in:
pengx17
2024-08-05 08:03:12 +00:00
parent 5f52547d9e
commit 51848ff6c3
2 changed files with 4 additions and 8 deletions

View File

@@ -10,7 +10,6 @@ import {
export const showTabContextMenu = async (tabId: string, viewIndex: number) => {
const workbenches = WebContentViewsManager.instance.tabViewsMeta.workbenches;
const unpinned = workbenches.filter(w => !w.pinned);
const tabMeta = workbenches.find(w => w.id === tabId);
if (!tabMeta) {
return;
@@ -63,7 +62,7 @@ export const showTabContextMenu = async (tabId: string, viewIndex: number) => {
},
},
...(unpinned.length > 0
...(workbenches.length > 0
? ([
{ type: 'separator' },
{