From 96687f3a5387327c4c45a6a7f87935ca445077eb Mon Sep 17 00:00:00 2001 From: Bot Date: Tue, 3 Mar 2026 16:08:56 +0100 Subject: [PATCH] Most Played: Top 10 statt Top 3 anzeigen Co-Authored-By: Claude Opus 4.6 --- web/src/App.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/App.tsx b/web/src/App.tsx index dd144bb..fb48183 100644 --- a/web/src/App.tsx +++ b/web/src/App.tsx @@ -554,7 +554,7 @@ export default function App() { [adminFilteredSounds, adminSelection, soundKey]); const allVisibleSelected = adminFilteredSounds.length > 0 && selectedVisibleCount === adminFilteredSounds.length; - const analyticsTop = analytics.mostPlayed.slice(0, 3); + const analyticsTop = analytics.mostPlayed.slice(0, 10); const totalSoundsDisplay = analytics.totalSounds || total; const clockMain = clock.slice(0, 5);