diff --git a/src/vs/workbench/parts/quickopen/browser/viewPickerHandler.ts b/src/vs/workbench/parts/quickopen/browser/viewPickerHandler.ts index 18cadb8c47abe..4e376c3ff2d6d 100644 --- a/src/vs/workbench/parts/quickopen/browser/viewPickerHandler.ts +++ b/src/vs/workbench/parts/quickopen/browser/viewPickerHandler.ts @@ -156,7 +156,7 @@ export class ViewPickerHandler extends QuickOpenHandler { const terminalsCategory = nls.localize('terminals', "Terminal"); this.terminalService.terminalTabs.forEach((tab, tabIndex) => { tab.terminalInstances.forEach((terminal, terminalIndex) => { - const index = `${tabIndex + 1}.${terminalIndex + 1}` + const index = `${tabIndex + 1}.${terminalIndex + 1}`; const entry = new ViewEntry(nls.localize('terminalTitle', "{0}: {1}", index, terminal.title), terminalsCategory, () => { this.terminalService.showPanel(true).done(() => { this.terminalService.setActiveInstance(terminal);