提交 e3589e91 编写于 作者: R Rob Lourens

Truncate publisher name in extension list #27987

上级 2e618308
......@@ -735,10 +735,10 @@ Steps to Reproduce:
return 'none' + themeExclusionStr;
}
let tableHeader = `Extension|Author|Version
let tableHeader = `Extension|Author (truncated)|Version
---|---|---`;
const table = extensions.map(e => {
return `${e.manifest.name}|${e.manifest.publisher}|${e.manifest.version}`;
return `${e.manifest.name}|${e.manifest.publisher.substr(0, 3)}|${e.manifest.version}`;
}).join('\n');
const extensionTable = `
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册