We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d808998 commit 2d22c9fCopy full SHA for 2d22c9f
src/platform/assets/utils/categoryLabel.ts
@@ -3,6 +3,9 @@ const ACRONYM_TAGS = new Set(['VAE', 'CLIP', 'GLIGEN'])
3
export function formatCategoryLabel(raw?: string): string {
4
if (!raw) return 'Models'
5
6
+ // Special display name mappings
7
+ if (raw === 'diffusion_models') return 'Diffusion'
8
+
9
return raw
10
.split('_')
11
.map((segment) => {
0 commit comments