diff --git a/tabby-core/src/components/splitTab.component.ts b/tabby-core/src/components/splitTab.component.ts index d3b3350f..1c4e43fa 100644 --- a/tabby-core/src/components/splitTab.component.ts +++ b/tabby-core/src/components/splitTab.component.ts @@ -635,7 +635,7 @@ export class SplitTabComponent extends BaseTabComponent implements AfterViewInit } private updateTitle (): void { - this.setTitle(this.getAllTabs().map(x => x.title).join(' | ')) + this.setTitle([...new Set(this.getAllTabs().map(x => x.title))].join(' | ')) } private attachTabView (tab: BaseTabComponent) {