-
-
+
+
-
-
@@ -1121,7 +1109,7 @@
-
+
diff --git a/src/static/js/app.js b/src/static/js/app.js
index f71379d..cd37ea2 100644
--- a/src/static/js/app.js
+++ b/src/static/js/app.js
@@ -209,21 +209,6 @@ async function loadDashboard() {
`).join("");
}
- // Recent activity
- const actEl = document.getElementById("recentActivity");
- if (stats.recent_activity.length === 0) {
- actEl.innerHTML = '
Keine Aktivität
';
- } else {
- actEl.innerHTML = stats.recent_activity.map(a => `
-
-
${a.type === "org" ? "O" : "U"}
-
-
${esc(a.label)}
-
${formatDate(a.created_at)}
-
-
- `).join("");
- }
} catch (err) {
console.error("Dashboard laden fehlgeschlagen:", err);
}