groups-lists: remove unneeded HTML escape

Signed-off-by: XhmikosR <xhmikosr@gmail.com>
This commit is contained in:
XhmikosR
2025-03-30 15:39:07 +03:00
committed by GitHub
parent 919b96e117
commit 510b3c84c9

View File

@@ -552,7 +552,7 @@ function editList() {
const dataId = tr.attr("data-id");
const address = utils.hexDecode(tr.attr("data-address"));
const enabled = tr.find("#enabled_" + dataId).is(":checked");
const comment = utils.escapeHtml(tr.find("#comment_" + dataId).val());
const comment = tr.find("#comment_" + dataId).val();
// Convert list of string integers to list of integers using map(Number)
const groups = tr
.find("#multiselect_" + dataId)