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