fix(dashboard): show explicit kind="llm" combos on combos page
LLM combos created with kind:"llm" were hidden because the page only listed no-kind combos. Include kind==="llm" while still filtering out media provider (webSearch/webFetch) combos. Closes #1682 Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
committed by
decolua
parent
827e5c382b
commit
51cbe65c15
@@ -37,8 +37,8 @@ export default function CombosPage() {
|
||||
const providersData = await providersRes.json();
|
||||
const settingsData = settingsRes.ok ? await settingsRes.json() : {};
|
||||
|
||||
// Only LLM combos here — webSearch/webFetch combos belong to media-providers/web
|
||||
if (combosRes.ok) setCombos((combosData.combos || []).filter(c => !c.kind));
|
||||
// Only LLM combos here - webSearch/webFetch combos belong to media-providers/web
|
||||
if (combosRes.ok) setCombos((combosData.combos || []).filter(c => !c.kind || c.kind === "llm"));
|
||||
if (providersRes.ok) {
|
||||
setActiveProviders(providersData.connections || []);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user