fixed issue where searchbar was producing an error searching with an empty input

This commit is contained in:
adisposkofh
2026-05-20 17:06:05 +02:00
parent cf506a7b1e
commit 0cc628a8e3
@@ -70,6 +70,8 @@ export default {
if (this.abortController) this.abortController.abort();
this.abortController = new AbortController();
if (!this.getSearchStr()?.length) return;
this.searchfunction(this.searchsettings, {
timeout: 50000,
signal: this.abortController.signal,