fix(filters): apply preset base models from full list

This commit is contained in:
Will Miao
2026-04-18 06:59:21 +08:00
parent d9ec9c512e
commit 67ad68a23f
2 changed files with 94 additions and 1 deletions

View File

@@ -232,7 +232,7 @@ export class FilterPresetManager {
try {
const fetchOptions = signal ? { signal } : {};
const response = await fetch(`/api/lm/${this.currentPage}/base-models`, fetchOptions);
const response = await fetch(`/api/lm/${this.currentPage}/base-models?limit=0`, fetchOptions);
if (!response.ok) throw new Error('Failed to fetch base models');