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

Fix #28961 - "Report issues" failing when no themes are installed

上级 04237617
......@@ -845,8 +845,8 @@ Steps to Reproduce:
return onlyTheme ? 'themes' : 'nonThemes';
});
const themeExclusionStr = themes.length ? `\n(${themes.length} theme extensions excluded)` : '';
extensions = nonThemes;
const themeExclusionStr = (themes && themes.length) ? `\n(${themes.length} theme extensions excluded)` : '';
extensions = nonThemes || [];
if (!extensions.length) {
return 'none' + themeExclusionStr;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册