diff --git a/public/js/ui.js b/public/js/ui.js
index 5794084..55a97ad 100644
--- a/public/js/ui.js
+++ b/public/js/ui.js
@@ -239,7 +239,7 @@ export async function renderAdminDashboard() {
-
+
Hours by Employee
| Employee | Total Hours |
${Object.entries(employeeTotals).map(([username, totalMs]) => `| ${username} | ${utils.formatDecimal(totalMs)} |
`).join('') || '| No data. |
'}
Detailed Logs
| Employee | In | Out | Duration | Actions |
${allTimeEntries.map(e => `| ${e.username||'N/A'} | ${utils.formatDateTime(e.punch_in_time)} | ${utils.formatDateTime(e.punch_out_time)} | ${e.punch_out_time ? utils.formatDecimal(new Date(e.punch_out_time) - new Date(e.punch_in_time)) + ' hrs' : '...'} | |
`).join('')}