From ba15137f52ada0c37c329bbff4ed6dc95abc8612 Mon Sep 17 00:00:00 2001 From: Marco0300 Date: Tue, 1 Sep 2026 23:20:02 +0200 Subject: [PATCH] fix: show logo without company name in header --- public/index.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/public/index.php b/public/index.php index b528210..175a12d 100644 --- a/public/index.php +++ b/public/index.php @@ -44,10 +44,11 @@ function render_header(string $title): void $user = current_user(); $brandName = app_setting('company_name', 'JOBcard') ?: 'JOBcard'; $logoFile = app_setting('logo_filename'); - $brandMark = $logoFile ? '' : ''; + $brandMark = $logoFile ? '' : ''; + $brandLabel = $logoFile ? $brandMark : e($brandName); echo '' . e($title) . ' · ' . e($brandName) . ''; if ($user) { - echo '