diff --git a/src/features/authFiles/components/AuthFileCard.tsx b/src/features/authFiles/components/AuthFileCard.tsx index 9e7b9108..5cd01fab 100644 --- a/src/features/authFiles/components/AuthFileCard.tsx +++ b/src/features/authFiles/components/AuthFileCard.tsx @@ -22,6 +22,7 @@ import { getTypeColor, getTypeLabel, isRuntimeOnlyAuthFile, + parsePriorityValue, resolveAuthFileStats, type QuotaProviderType, type ResolvedTheme, @@ -110,6 +111,9 @@ export function AuthFileCard(props: AuthFileCardProps) { const hasStatusWarning = Boolean(rawStatusMessage) && !HEALTHY_STATUS_MESSAGES.has(rawStatusMessage.toLowerCase()); + const priorityValue = parsePriorityValue(file.priority ?? file['priority']); + const noteValue = typeof file.note === 'string' ? file.note.trim() : ''; + return (