diff --git a/website/public/scout/scripts.js b/website/public/scout/scripts.js index 6969d4e6..459d4f51 100644 --- a/website/public/scout/scripts.js +++ b/website/public/scout/scripts.js @@ -234,7 +234,7 @@ function processAndAppendReturn(data, newloc) { document.getElementById(newloc).innerHTML += "
"; document.getElementById(newloc + j.toString()).innerHTML += questions[j][0]; if (questions[j][0]=='cycleTimes') { - document.getElementById(newloc + j.toString()).innerHTML += " (on a scale from 0 to 10)" + document.getElementById(newloc + j.toString()).innerHTML += " (on a scale from 1 to 10)" } if (questions[j][1]['type'] == 'shortText') { document.getElementById(newloc + j.toString()).innerHTML += ""; @@ -243,7 +243,7 @@ function processAndAppendReturn(data, newloc) { } else if (questions[j][1]['type'] == 'stepper') { document.getElementById(newloc + j.toString()).innerHTML += "" + (questions[j][1]['defaultValue']).toString() + ""; } else if (questions[j][1]['type'] == 'label') { - document.getElementById(newloc + j.toString()).innerHTML += "" + (questions[j][1]['defaultValue']).toString() + ""; + document.getElementById(newloc + j.toString()).innerHTML += "" + (0).toString() + ""; } else if (questions[j][1]['type'] == 'slider') { document.getElementById(newloc + j.toString()).innerHTML += "  " + questions[j][1]['min'] + "  "; document.getElementById(newloc + j.toString()).innerHTML += "";