mirror of
https://github.com/sissbruecker/linkding
synced 2024-11-10 06:04:15 +00:00
Increase tag limit in tag autocomplete (#581)
- increas tag limit to 5000 Co-authored-by: Sebastian Ruml <sebastian@sebastianruml.name>
This commit is contained in:
parent
e83d519cab
commit
70288d6865
1 changed files with 1 additions and 1 deletions
|
@ -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');
|
||||
|
|
Loading…
Reference in a new issue