提交 7c599cc4 编写于 作者: R Rob Lourens

Fix 'undefined' showing up in notebook webview

上级 bbb54b5f
......@@ -116,7 +116,7 @@ interface ICachedInset {
function html(strings: TemplateStringsArray, ...values: any[]): string {
let str = '';
strings.forEach((string, i) => {
str += string + values[i];
str += string + (values[i] || '');
});
return str;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册