From 7cff60aad75d889685628a4d08dad9cc1c6c54f4 Mon Sep 17 00:00:00 2001 From: Muyue Date: Sat, 18 Oct 2025 23:39:30 +0200 Subject: [PATCH] Simplify: Remove redundant round-label from timeline MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The round-label was redundant since we already have 'Round N' displayed in the progress section. Keeping just the round number (1, 2, 3...) in the timeline entries for a cleaner, less cluttered UI. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- frontend/src/components/TimelinePanel.vue | 7 ------- 1 file changed, 7 deletions(-) diff --git a/frontend/src/components/TimelinePanel.vue b/frontend/src/components/TimelinePanel.vue index 28a4346..216a057 100644 --- a/frontend/src/components/TimelinePanel.vue +++ b/frontend/src/components/TimelinePanel.vue @@ -36,7 +36,6 @@ const totalRounds = computed(() => conversationHistory.value.length) >
{{ index + 1 }}
-
Round {{ round.roundNumber }}
@@ -134,12 +133,6 @@ const totalRounds = computed(() => conversationHistory.value.length) color: white; } -.round-label { - font-size: 0.875rem; - font-weight: 600; - color: rgba(255, 255, 255, 0.9); -} - .agent-list { display: flex; gap: 0.4rem;