From 598ebaeda6862446c47f1fb31ff09d30d93f7d65 Mon Sep 17 00:00:00 2001 From: vibe-bot Date: Fri, 8 Aug 2025 16:37:41 +0200 Subject: [PATCH] chore(ui): Tab-Bezeichnung 'Neu' ohne doppelten (10) Hinweis --- server/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/src/index.ts b/server/src/index.ts index 0980baa..a790e85 100644 --- a/server/src/index.ts +++ b/server/src/index.ts @@ -335,7 +335,7 @@ app.get('/api/sounds', (req: Request, res: Response) => { const recentCount = Math.min(10, total); const foldersOut = [ { key: '__all__', name: 'Alle', count: total }, - { key: '__recent__', name: 'Neu (10)', count: recentCount }, + { key: '__recent__', name: 'Neu', count: recentCount }, ...folders ]; // isRecent-Flag für UI (Top 5 der neuesten)