Merge pull request #118 from danieldupriest/FixesFor108

fixes for ticket #108 changed "true" to true
This commit is contained in:
ppdom 2019-03-07 12:59:18 -08:00 committed by GitHub
commit 318cb0a985
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -470,7 +470,7 @@ function displayReport(parsedData){
let p1Value = "";
if(field.field_type == "boolean")
{
if(field.value == "true")
if(field.value == true)
{
p1Value = document.createTextNode(field.label + ": " + "Yes");
p1.appendChild(p1Value);