summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--includes/view/User_view.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/view/User_view.php b/includes/view/User_view.php
index 87d767f8..85e6920c 100644
--- a/includes/view/User_view.php
+++ b/includes/view/User_view.php
@@ -526,7 +526,7 @@ function User_view_worklog($worklog, $admin_user_worklog_privilege)
return [
'date' => glyph('calendar') . date('Y-m-d', $worklog['work_timestamp']),
- 'duration' => '<b>' . sprintf('%.2f', $worklog['work_hours']) . '</b>',
+ 'duration' => sprintf('%.2f', $worklog['work_hours']) . ' h',
'room' => '',
'shift_info' => __('Work log entry'),
'comment' => $worklog['comment'] . '<br>'