From b079cc1b5718a6c6847f0ce72bc96c89c7f2a51d Mon Sep 17 00:00:00 2001 From: Dejvino Date: Thu, 21 May 2026 18:47:07 +0200 Subject: [PATCH] fix missing company name --- index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.php b/index.php index aa955c1..6084c97 100644 --- a/index.php +++ b/index.php @@ -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'] ?? '', ];