From b16035b9f89d5d70e1ef475afd5208f47cd874a8 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Fri, 11 Jul 2025 08:22:54 +0200 Subject: [PATCH] Remove activity indicator to prevent title jumping (#309) --- web/src/server/utils/activity-detector.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/web/src/server/utils/activity-detector.ts b/web/src/server/utils/activity-detector.ts index 3c16f70b..4d30ed32 100644 --- a/web/src/server/utils/activity-detector.ts +++ b/web/src/server/utils/activity-detector.ts @@ -180,11 +180,11 @@ function parseClaudeStatus(data: string): ActivityStatus | null { // Format tokens - the input already has 'k' suffix in the regex pattern // So "6.0" means 6.0k tokens, not 6.0 tokens const formattedTokens = `${tokens}k`; - // Include indicator + action and stats - displayText = `${indicator} ${action} (${duration}s, ${direction}${formattedTokens})`; + // Include action and stats (without indicator to avoid title jumping) + displayText = `${action} (${duration}s, ${direction}${formattedTokens})`; } else { - // Simple format without token info - displayText = `${indicator} ${action} (${duration}s)`; + // Simple format without token info (without indicator to avoid title jumping) + displayText = `${action} (${duration}s)`; } return {