From 67a6c10edc30b369d56bcd7cd99fe4e72961c28c Mon Sep 17 00:00:00 2001 From: Shirone Date: Mon, 29 Dec 2025 16:10:33 +0100 Subject: [PATCH] refactor: improve code readability in RunningAgentsView component - Reformatted JSX for better clarity and consistency. - Enhanced the layout of the feature description prop for improved maintainability. --- apps/ui/src/components/views/running-agents-view.tsx | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/apps/ui/src/components/views/running-agents-view.tsx b/apps/ui/src/components/views/running-agents-view.tsx index 53c621da..fb1ded96 100644 --- a/apps/ui/src/components/views/running-agents-view.tsx +++ b/apps/ui/src/components/views/running-agents-view.tsx @@ -174,7 +174,10 @@ export function RunningAgentsView() { )} {agent.description && ( -

+

{agent.description}

)} @@ -228,7 +231,9 @@ export function RunningAgentsView() { open={true} onClose={() => setSelectedAgent(null)} projectPath={selectedAgent.projectPath} - featureDescription={selectedAgent.description || selectedAgent.title || selectedAgent.featureId} + featureDescription={ + selectedAgent.description || selectedAgent.title || selectedAgent.featureId + } featureId={selectedAgent.featureId} featureStatus="running" />