HTML not text

This commit is contained in:
Mike Phares 2023-08-02 15:35:28 -07:00
parent 93eb6a08b4
commit 197620fc84

View File

@ -45,10 +45,10 @@ connection.on("NotifyAll", function (data) {
properties.push(property); properties.push(property);
for (var i = 0; i < properties.length; i++) { for (var i = 0; i < properties.length; i++) {
for (var j = 0; j < postResult.QaMetTests[properties[i]].length; j++) { for (var j = 0; j < postResult.QaMetTests[properties[i]].length; j++) {
qaMetTests += properties[i] + " - [" + postResult.QaMetTests[properties[i]][j].recipe + "] - [" + postResult.QaMetTests[properties[i]][j].recipePattern + "]<br />"; qaMetTests += properties[i] + " - [" + postResult.QaMetTests[properties[i]][j].Recipe + "] - [" + postResult.QaMetTests[properties[i]][j].RecipePattern + "]<br />";
} }
} }
document.getElementById("qaMetTests").innerText = qaMetTests; document.getElementById("qaMetTests").innerHTML = qaMetTests;
} }
} }
}); });