Add BMAD framework, authentication, and new features

This commit is contained in:
2026-01-08 21:23:23 +01:00
parent f07d28aefd
commit 15a95fb319
1298 changed files with 73308 additions and 154901 deletions

View File

@@ -103,7 +103,7 @@ export function LabelProvider({ children }: { children: ReactNode }) {
}
const getLabelColorHelper = (name: string): LabelColorName => {
const label = labels.find(l => l.name === name)
const label = labels.find(l => l.name.toLowerCase() === name.toLowerCase())
return label?.color || 'gray'
}