Show edition year instead of program name platform-wide
All checks were successful
Build and Push Docker Image / build (push) Successful in 8m33s

Change program selectors and display labels from full program name
to "2026 Edition" format across admin, jury, mentor, observer, and
public pages. Selector labels changed from "Program" to "Edition".

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-02-02 19:52:52 +01:00
parent 86d38ba743
commit e34cafebbf
19 changed files with 30 additions and 29 deletions

View File

@@ -89,15 +89,15 @@ export default function CreateAwardPage() {
</CardHeader>
<CardContent className="space-y-4">
<div className="space-y-2">
<Label htmlFor="program">Program</Label>
<Label htmlFor="program">Edition</Label>
<Select value={programId} onValueChange={setProgramId}>
<SelectTrigger id="program">
<SelectValue placeholder="Select a program" />
<SelectValue placeholder="Select an edition" />
</SelectTrigger>
<SelectContent>
{programs?.map((p) => (
<SelectItem key={p.id} value={p.id}>
{p.name}
{p.year} Edition
</SelectItem>
))}
</SelectContent>