From 241163d9abe21a7b15fccb953854e78a605a2a69 Mon Sep 17 00:00:00 2001 From: lehel Date: Wed, 1 Oct 2025 21:33:25 +0200 Subject: [PATCH] ui.html --- ui.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui.html b/ui.html index 26cae77..21e6137 100644 --- a/ui.html +++ b/ui.html @@ -43,7 +43,7 @@ if (data.procedures) { txt += "Procedures:\n"; data.procedures.forEach(function(p) { - txt += "- " + p + "\n"; + txt += `- ${p.name} (${p.price} Ft, ${p.duration_minutes} min${p.note ? ', ' + p.note : ''})\n`; }); } appendMsg(txt, 'bot');