From ba2e138ab92f124557340dc960e9d728d838865d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Wed, 19 Nov 2025 13:19:05 +0100 Subject: [PATCH] feat: add effect name labels to effects header MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Display effect names as small chips/badges in effects header - Shows all effect names at a glance without expanding - Styled with primary color background and border - Horizontal scrollable if many effects - Visible whether effects rack is expanded or collapsed 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- components/tracks/TrackList.tsx | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/components/tracks/TrackList.tsx b/components/tracks/TrackList.tsx index 127487e..dc10001 100644 --- a/components/tracks/TrackList.tsx +++ b/components/tracks/TrackList.tsx @@ -438,8 +438,20 @@ export function TrackList({ {!track.collapsed && (
{/* Effects Header - Collapsible */} -
- Effects +
+ Effects + + {/* Effect name labels */} +
+ {track.effectChain.effects.map((effect) => ( + + {effect.name} + + ))} +
{/* Show/hide toggle - Positioned absolutely on the right */}