Fix nextmatch search

This commit is contained in:
nathan 2022-08-29 08:43:10 -06:00
parent 0c6191d9d8
commit 1b0c2a95a2

View File

@ -3328,7 +3328,7 @@ export class et2_nextmatch_header_bar extends et2_DOMWidget implements et2_INext
overlay: (typeof settings.searchbox != 'undefined' && typeof settings.searchbox.overlay != 'undefined') ? settings.searchbox.overlay : false,
onchange: function()
{
if(this.value !== this.nextmatch.activeFilters.search)
if(this.value !== self.nextmatch.activeFilters.search)
{
self.nextmatch.applyFilters({search: this.get_value()});
}