提交 eacad2d5 编写于 作者: R Ramya Achutha Rao

Avoid comma due to array, put tags under quotes as they can be multi worded

上级 1eab70bb
......@@ -237,7 +237,7 @@ export class ExtensionsListView extends ViewsViewletPanel {
const languageTag = languageName ? ` tag:"${languageName}"` : '';
// Construct a rich query
return `tag:"__ext_${ext}"${keywords.map(tag => ` tag:${tag}`)}${languageTag}`;
return `tag:"__ext_${ext}" ${keywords.map(tag => `tag:"${tag}"`).join(' ')}${languageTag}`;
});
if (names.length) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册