From f028f91ce47fe1a9295a14fba9a91b37cf1ce030 Mon Sep 17 00:00:00 2001 From: Ruslan Date: Mon, 20 Jul 2026 15:57:43 +0000 Subject: [PATCH] =?UTF-8?q?universal-runtime:=20fix=20JS=20SyntaxError=20?= =?UTF-8?q?=E2=80=94=20remove=20bash=20escapes=20from=20single-quoted=20he?= =?UTF-8?q?redoc?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- universal-runtime/entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/universal-runtime/entrypoint.sh b/universal-runtime/entrypoint.sh index d911fb2..e958707 100755 --- a/universal-runtime/entrypoint.sh +++ b/universal-runtime/entrypoint.sh @@ -132,7 +132,7 @@ cat > /opt/portal/index.html <<'HTML' } const nextAttempt = reconnectAttempts + 1; const delayMs = reconnectDelay(nextAttempt); - showError(\`\${reasonText} Повтор \${nextAttempt}/\${MAX_RECONNECT_ATTEMPTS} через \${Math.ceil(delayMs/1000)} сек.\`); + showError(`${reasonText} Повтор ${nextAttempt}/${MAX_RECONNECT_ATTEMPTS} через ${Math.ceil(delayMs/1000)} сек.`); reconnectTimer = setTimeout(() => { reconnectAttempts = nextAttempt; hideError();