|
@@ -102,7 +102,7 @@ function retrievePhrData() {
|
|
|
row += "<tr>";
|
|
|
row += "<td>" + d.createDate + "</td>";
|
|
|
if (phrType==="bloodPressure") {
|
|
|
- row += "<td><span class=''>" + parseInt(d.phrValue) + " / " + (isNaN(parseInt(d.phrValue2)) ? "--" : parseInt(d.phrValue2)) + "</span></td>";
|
|
|
+ row += "<td><span class=''>" + (isNaN(parseInt(d.phrValue)) ? "--" : parseInt(d.phrValue)) + " / " + (isNaN(parseInt(d.phrValue2)) ? "--" : parseInt(d.phrValue2)) + "</span></td>";
|
|
|
}
|
|
|
else if (phrType==="temperature") {
|
|
|
row += "<td><span class=''>" + d.phrValue + "</span></td>";
|