mirror of
https://github.com/DominikDoom/a1111-sd-webui-tagcomplete.git
synced 2026-03-03 04:10:02 +00:00
Apply same fix to extra tags
Count now defaults to max safe integer, which simplifies the sort function Before, it resulted in really bad performance
This commit is contained in:
@@ -23,7 +23,7 @@ class AutocompleteResult {
|
||||
|
||||
// Additional info, only used in some cases
|
||||
category = null;
|
||||
count = null;
|
||||
count = Number.MAX_SAFE_INTEGER;
|
||||
usageBias = null;
|
||||
aliases = null;
|
||||
meta = null;
|
||||
|
||||
Reference in New Issue
Block a user