fixes for ticket #108 changed "true" to true
This commit is contained in:
parent
024e5dae9c
commit
dd83414b2f
1 changed files with 1 additions and 1 deletions
|
@ -470,7 +470,7 @@ function displayReport(parsedData){
|
||||||
let p1Value = "";
|
let p1Value = "";
|
||||||
if(field.field_type == "boolean")
|
if(field.field_type == "boolean")
|
||||||
{
|
{
|
||||||
if(field.value == "true")
|
if(field.value == true)
|
||||||
{
|
{
|
||||||
p1Value = document.createTextNode(field.label + ": " + "Yes");
|
p1Value = document.createTextNode(field.label + ": " + "Yes");
|
||||||
p1.appendChild(p1Value);
|
p1.appendChild(p1Value);
|
||||||
|
|
Loading…
Reference in a new issue