trigger search when searchfield gets focus a searchstr is there and the searchresult is empty

This commit is contained in:
Harald Bamberger
2025-08-05 06:59:21 +02:00
parent ecc7e4672f
commit 459d445f2f
@@ -404,6 +404,10 @@ export default {
if( this.hidetimer !== null ) {
clearTimeout(this.hidetimer);
}
if (this.searchsettings.searchstr.length >= 2
&& this.searchresult.length === 0) {
this.search();
}
},
searchfocusout: function(e) {
e.preventDefault();