diff --git a/spark-analytics/base/webview.yaml b/spark-analytics/base/webview.yaml index 51cc94a..1448e0a 100755 --- a/spark-analytics/base/webview.yaml +++ b/spark-analytics/base/webview.yaml @@ -209,7 +209,7 @@ data: } const reader = resp.body.getReader(); const dec = new TextDecoder(); - const SEP = String.fromCharCode(10, 10); // "\n\n" — avoids YAML backslash escaping + const SEP = String.fromCharCode(10, 10); // SSE frame separator (two newlines) let buf = '', full = ''; for (;;) { const { done, value } = await reader.read();