提交 d8d22b5f 编写于 作者: S Sandeep Somavarapu

Fix #61009

上级 0e839e7d
......@@ -170,7 +170,7 @@ export class ViewPickerHandler extends QuickOpenHandler {
const channels = this.outputService.getChannelDescriptors();
channels.forEach((channel, index) => {
const outputCategory = nls.localize('channels', "Output");
const entry = new ViewEntry(channel.label, outputCategory, () => this.outputService.showChannel(channel.id));
const entry = new ViewEntry(channel.log ? nls.localize('logChannel', "Log ({0})", channel.label) : channel.label, outputCategory, () => this.outputService.showChannel(channel.id));
viewEntries.push(entry);
});
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册