From 0cc71667677fb814c660289aaf842c9df71d7b89 Mon Sep 17 00:00:00 2001 From: kolaente Date: Sun, 17 Oct 2021 15:19:21 +0200 Subject: [PATCH] fix: don't search for first letter images --- src/views/list/settings/background.vue | 1 - 1 file changed, 1 deletion(-) diff --git a/src/views/list/settings/background.vue b/src/views/list/settings/background.vue index 4a93d7465..fc78156f8 100644 --- a/src/views/list/settings/background.vue +++ b/src/views/list/settings/background.vue @@ -87,7 +87,6 @@ export default { // We're using debounce to not search on every keypress but with a delay. debounceNewBackgroundSearch: debounce(this.newBackgroundSearch, SEARCH_DEBOUNCE, { - leading: true, trailing: true, }),