提交 a20c5a79 编写于 作者: J Joao Moreno

Merge branch 'debugger_type_in_extension_view' of...

Merge branch 'debugger_type_in_extension_view' of https://github.com/Krzysztof-Cieslak/vscode into Krzysztof-Cieslak-debugger_type_in_extension_view
...@@ -510,8 +510,13 @@ export class ExtensionEditor extends BaseEditor { ...@@ -510,8 +510,13 @@ export class ExtensionEditor extends BaseEditor {
const details = $('details', { open: true, ontoggle: onDetailsToggle }, const details = $('details', { open: true, ontoggle: onDetailsToggle },
$('summary', null, localize('debuggers', "Debuggers ({0})", contrib.length)), $('summary', null, localize('debuggers', "Debuggers ({0})", contrib.length)),
$('table', null, $('table', null,
$('tr', null, $('th', null, localize('debugger name', "Name"))), $('tr', null,
...contrib.map(d => $('tr', null, $('td', null, d.label || d.type))) $('th', null, localize('debugger name', "Name")),
$('th', null, localize('debugger type', "Type")),
),
...contrib.map(d => $('tr', null,
$('td', null, d.label),
$('td', null, d.type)))
) )
); );
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册