From 70288d6865c3433c7aa141c02033a356618ff4f8 Mon Sep 17 00:00:00 2001 From: Sebastian Ruml Date: Tue, 23 Jan 2024 22:32:16 +0100 Subject: [PATCH] Increase tag limit in tag autocomplete (#581) - increas tag limit to 5000 Co-authored-by: Sebastian Ruml --- bookmarks/frontend/components/TagAutocomplete.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bookmarks/frontend/components/TagAutocomplete.svelte b/bookmarks/frontend/components/TagAutocomplete.svelte index 779fcc9..83d4750 100644 --- a/bookmarks/frontend/components/TagAutocomplete.svelte +++ b/bookmarks/frontend/components/TagAutocomplete.svelte @@ -22,7 +22,7 @@ async function init() { // For now we cache all tags on load as the template did before try { - tags = await apiClient.getTags({limit: 1000, offset: 0}); + tags = await apiClient.getTags({limit: 5000, offset: 0}); tags.sort((left, right) => left.name.toLowerCase().localeCompare(right.name.toLowerCase())) } catch (e) { console.warn('TagAutocomplete: Error loading tag list');