mirror of
https://github.com/pi-hole/web.git
synced 2025-12-20 02:38:28 +00:00
groups-lists: remove unneeded HTML escape (#3379)
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user