Skip to content

Commit 81c31c6

Browse files
author
xaver
committed
autocomplte fix and empty is still where
1 parent 7dc6037 commit 81c31c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

interface/web/themes/default_combobox/templates/main.tpl.htm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@
9797
var matcher = new RegExp( $.ui.autocomplete.escapeRegex(request.term), "i" );
9898
response( select.children( "option" ).map(function() {
9999
var text = $( this ).text();
100-
//if ( this.value && ( !request.term || matcher.test(text) ) )
100+
if (( !request.term || matcher.test(text) ) )
101101
return {
102102
label: text.replace(
103103
new RegExp(

0 commit comments

Comments
 (0)