提交 0b772cda 编写于 作者: D Daniel Imms

Prevent undefined from showing up in terminal dropdown

Prefer empty string
上级 af9d9ac5
......@@ -117,7 +117,7 @@ export abstract class TerminalService implements ITerminalService {
}
public getTabLabels(): string[] {
return this._terminalTabs.filter(tab => tab.terminalInstances.length > 0).map((tab, index) => `${index + 1}: ${tab.title}`);
return this._terminalTabs.filter(tab => tab.terminalInstances.length > 0).map((tab, index) => `${index + 1}: ${tab.title ? tab.title : ''}`);
}
private _removeTab(tab: ITerminalTab): void {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册