diff --git a/src/static/js/source-health.js b/src/static/js/source-health.js
index 7527f2e..1630435 100644
--- a/src/static/js/source-health.js
+++ b/src/static/js/source-health.js
@@ -87,7 +87,7 @@ function renderHealthDashboard() {
${esc(s.title)} |
${esc(s.description || "")} |
${PRIORITY_LABELS[s.priority] || s.priority} |
- ${formatDate(s.created_at)} |
+ ${formatDateTime(s.created_at)} |
@@ -127,7 +127,7 @@ function renderHealthDashboard() {
| ${SUGGESTION_TYPE_LABELS[s.suggestion_type] || s.suggestion_type} |
${esc(s.title)} |
${s.status === "accepted" ? "Angenommen" : "Abgelehnt"} |
- ${formatDate(s.reviewed_at)} |
+ ${formatDateTime(s.reviewed_at)} |
`,
)
.join("")}
@@ -148,7 +148,7 @@ function renderHealthDashboard() {