Merge pull request #1603 from thislooksfun/devel

Fix html escaping showing up in input fields. (#1584)
This commit is contained in:
Adam Warner
2020-11-08 15:40:04 +00:00
committed by GitHub
5 changed files with 20 additions and 5 deletions

View File

@@ -88,7 +88,7 @@ function initTable() {
$("td:eq(2)", row).html('<input id="comment_' + data.id + '" class="form-control">');
var commentEl = $("#comment_" + data.id, row);
commentEl.val(data.comment);
commentEl.val(utils.unescapeHtml(data.comment));
commentEl.on("change", editAdlist);
$("td:eq(3)", row).empty();