fix: escape awesomeplete label titles

This commit is contained in:
Ankush Menat 2023-09-11 22:01:01 +05:30
parent ebfdfa283b
commit 045d35b89e

View file

@ -221,7 +221,7 @@ frappe.ui.form.ControlLink = class ControlLink extends frappe.ui.form.ControlDat
return $("<li></li>")
.data("item.autocomplete", d)
.prop("aria-selected", "false")
.html(`<a><p title="${_label}">${html}</p></a>`)
.html(`<a><p title="${frappe.utils.escape_html(_label)}">${html}</p></a>`)
.get(0);
},
sort: function () {