|
@@ -494,7 +494,7 @@
|
|
|
past_h += "<td>";
|
|
|
if (past.pds != null) {
|
|
|
$.each(past.pds, function (pd_index, pd) {
|
|
|
- past_h += pd.value + pd.unit + " ";
|
|
|
+ past_h += pd.value + pd.unit + ", ";
|
|
|
});
|
|
|
}
|
|
|
past_h += "</td></tr>";
|
|
@@ -571,7 +571,7 @@
|
|
|
treat_h += "<td>";
|
|
|
if (treat.pds != null) {
|
|
|
$.each(treat.pds, function (pd_index, pd) {
|
|
|
- treat_h += pd.value + pd.unit + " ";
|
|
|
+ treat_h += pd.value + pd.unit + ", ";
|
|
|
});
|
|
|
}
|
|
|
treat_h += "</td></tr>";
|