From 08534e54512529f4a917350a89dadb3a923e6404 Mon Sep 17 00:00:00 2001 From: artem Date: Tue, 16 Dec 2025 21:35:25 +0300 Subject: [PATCH] fix url --- server/static/scripts.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/static/scripts.js b/server/static/scripts.js index c923fcc..5d96922 100644 --- a/server/static/scripts.js +++ b/server/static/scripts.js @@ -33,7 +33,7 @@ async function SavePhoto(self) { // Обработка основных результатов for (let key in json.results) { if (json.description != undefined) { - text += `
${json.results[key]} (вероятность: ${Math.round(parseFloat(key) * 100)}%)
Описание
`; + text += `
${json.results[key]} (вероятность: ${Math.round(parseFloat(key) * 100)}%)
Описание
`; } else { text += `
${json.results[key]} (вероятность: ${Math.round(parseFloat(key) * 100)}%)
`; }