diff --git a/pages/collection/[id].vue b/pages/collection/[id].vue index 4402f88d4..cd0fb91aa 100644 --- a/pages/collection/[id].vue +++ b/pages/collection/[id].vue @@ -531,7 +531,16 @@ try { () => useBaseFetch( `projects?ids=${encodeURIComponent(JSON.stringify(collection.value.projects))}` - ) + ), + { + transform: (projects) => { + for (const project of projects) { + project.categories = project.categories.concat(project.loaders) + } + + return projects + }, + } ), ]) }