Added ability to close non-primary tabs involved in a split view #435

Merged
jarrah31 merged 1 commits from feature/splitview_tab_closing into dev-1.8.1 2025-11-10 19:31:23 +00:00

View File

@@ -340,7 +340,7 @@ export function TopNavbar({
isSplitScreenActive);
const isHome = tab.type === "home";
const disableClose =
(isSplitScreenActive && isActive) || isSplit || isHome;
(isSplitScreenActive && isActive) || isHome;
const isDraggingThisTab = dragState.draggedIndex === index;
const isTheDraggedTab = tab.id === dragState.draggedId;