fix missing company name

This commit is contained in:
Dejvino 2026-05-21 18:47:07 +02:00
parent 81cd3ba093
commit b079cc1b57

View File

@ -66,7 +66,7 @@ function pillUrl(string $href): string {
$cv_experience = array_map(function ($e) {
return [
'title' => $e['title'] ?? '',
'org' => $e['organization'] ?? '',
'org' => $e['company'] ?? '',
'date' => $e['date'] ?? '',
'desc' => $e['description'] ?? '',
];