Compare commits

...
Sign in to create a new pull request.

1 commit

Author SHA1 Message Date
Bot
96687f3a53 Most Played: Top 10 statt Top 3 anzeigen
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-03 16:09:10 +01:00

View file

@ -554,7 +554,7 @@ export default function App() {
[adminFilteredSounds, adminSelection, soundKey]); [adminFilteredSounds, adminSelection, soundKey]);
const allVisibleSelected = adminFilteredSounds.length > 0 && selectedVisibleCount === adminFilteredSounds.length; 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 totalSoundsDisplay = analytics.totalSounds || total;
const clockMain = clock.slice(0, 5); const clockMain = clock.slice(0, 5);