We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 92f8bb0 commit 5c898ecCopy full SHA for 5c898ec
tools/server/webui/src/assets/iframe_sandbox.html
@@ -7,7 +7,7 @@
7
const iframeConsole = {
8
_buffer: [],
9
log: function (...args) {
10
- this._buffer.push(args.map(String).join(' '));
+ this._buffer.push(args.map(JSON.stringify).join(' '));
11
},
12
getOutput: function () {
13
const output = this._buffer.join('\n');
0 commit comments