mirror of
https://github.com/willmiao/ComfyUI-Lora-Manager.git
synced 2026-03-25 07:05:43 -03:00
fix: Show all tags in LoRA Pool without limit (#819)
- Backend: Support limit=0 to return all tags in top-tags API - Frontend: Remove tags limit setting and fetch all tags by default - UI: Implement virtual scrolling in TagsModal for performance - Initial display 200 tags, load more on scroll - Show all results when searching - Remove lora_pool_tags_limit setting to simplify UX Fixes #819
This commit is contained in:
@@ -15,7 +15,7 @@ export function useLoraPoolApi() {
|
||||
}
|
||||
}
|
||||
|
||||
const fetchTags = async (limit = 100): Promise<TagOption[]> => {
|
||||
const fetchTags = async (limit = 0): Promise<TagOption[]> => {
|
||||
try {
|
||||
const response = await fetch(`/api/lm/loras/top-tags?limit=${limit}`)
|
||||
const data = await response.json()
|
||||
|
||||
Reference in New Issue
Block a user