From 84bf0bea51c84fa99c85f022242b2440cd6f65a4 Mon Sep 17 00:00:00 2001 From: Claude Code Date: Thu, 5 Mar 2026 01:26:51 +0100 Subject: [PATCH] Fix: Most Played zeigt 10 statt 3, Playstate Label zu Last Played --- web/src/App.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/src/App.tsx b/web/src/App.tsx index dd144bb..fb30ea6 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); @@ -624,7 +624,7 @@ export default function App() {
- {lastPlayed} + Last Played: {lastPlayed}
)} {selected && (