Go: implement ?type=filter branch for GET /agents (#18111)

This commit is contained in:
euvre
2026-08-11 23:54:48 -07:00
committed by GitHub
parent 49646da32d
commit 27edad8a76
6 changed files with 282 additions and 18 deletions

View File

@@ -951,7 +951,10 @@ export const useFetchAgentFilters = () => {
},
});
return { data: data.filter, loading };
return {
data: data?.filter ?? { owner: [], canvas_category: [] },
loading,
};
};
export const BuiltinPipelineKeys = {