Show full country name instead of code in assign dialog
Build and Push Docker Image / build (push) Successful in 8m11s Details

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Matt 2026-02-02 23:15:51 +01:00
parent a3f12ed5de
commit 56a44049d3
1 changed files with 2 additions and 1 deletions

View File

@ -24,6 +24,7 @@ import {
TableRow,
} from '@/components/ui/table'
import { Search, Loader2, Plus, Package } from 'lucide-react'
import { getCountryName } from '@/lib/countries'
interface AssignProjectsDialogProps {
roundId: string
@ -195,7 +196,7 @@ export function AssignProjectsDialog({
<TableCell>
{project.country ? (
<Badge variant="outline" className="text-xs">
{project.country}
{getCountryName(project.country)}
</Badge>
) : '—'}
</TableCell>