fix render function for typeahead folder search

This commit is contained in:
Uwe Steinmann 2024-03-30 12:28:00 +01:00
parent 6b17c35804
commit 9e7fa8eecd

View File

@ -265,7 +265,7 @@ function initMost() {
items = $(items).map(function (i, item) {
i = $(that.options.item).attr('data-value', item.name).attr('data-id', item.id).attr('data-type', item.type);
i./*find('a').*/html(that.highlighter(item))
i.find('a').html(that.highlighter(item))
return i[0]
})