ui.html
This commit is contained in:
parent
3ceea8cb38
commit
241163d9ab
2
ui.html
2
ui.html
|
|
@ -43,7 +43,7 @@
|
||||||
if (data.procedures) {
|
if (data.procedures) {
|
||||||
txt += "Procedures:\n";
|
txt += "Procedures:\n";
|
||||||
data.procedures.forEach(function(p) {
|
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');
|
appendMsg(txt, 'bot');
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue