diff --git a/core/misc/autocomplete.js b/core/misc/autocomplete.js index 5a1c156..a265651 100644 --- a/core/misc/autocomplete.js +++ b/core/misc/autocomplete.js @@ -201,7 +201,9 @@ */ function renderItem(ul, item) { return $('
  • ') - .append($('').html(item.label)) + .attr('data-value', item.value) + .append($('').attr('aria-label', item.value) + .html('')) .appendTo(ul); }