提交 9dbb0b4c 编写于 作者: K Krzysztof Cieślak

Add debugger type in extension view

上级 23360c8b
......@@ -487,8 +487,13 @@ export class ExtensionEditor extends BaseEditor {
const details = $('details', { open: true, ontoggle: onDetailsToggle },
$('summary', null, localize('debuggers', "Debuggers ({0})", contrib.length)),
$('table', null,
$('tr', null, $('th', null, localize('debugger name', "Name"))),
...contrib.map(d => $('tr', null, $('td', null, d.label || d.type)))
$('tr', null,
$('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.
先完成此消息的编辑!
想要评论请 注册