This commit is contained in:
lehel 2025-10-01 21:33:25 +02:00
parent 3ceea8cb38
commit 241163d9ab
No known key found for this signature in database
GPG Key ID: 9C4F9D6111EE5CFA
1 changed files with 1 additions and 1 deletions

View File

@ -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');