Skip to content

Commit 932d827

Browse files
theo-learnerclaude
andcommitted
fix: remove truncation from goal queue, degraded reasons, and agent loop error
- Goal queue active item: truncate → break-words - Degraded reasons: show all reasons joined with ' · ' instead of first only - Agent loop error: truncate → break-words Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 977071d commit 932d827

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/app/page.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1695,7 +1695,7 @@ export default function Dashboard() {
16951695
{shortId(goalManager?.activeGoalId)}
16961696
</span>
16971697
</div>
1698-
<p className="text-[11px] text-gray-500 truncate" title={activeQueueItem?.goal || ''}>
1698+
<p className="text-[11px] text-gray-500 break-words">
16991699
top: {activeQueueItem?.goal || 'No queued goal'}
17001700
</p>
17011701
<div className="flex items-center gap-2 text-[10px]">
@@ -1734,10 +1734,10 @@ export default function Dashboard() {
17341734
<span className="text-[11px] text-gray-500">Approval (Write)</span>
17351735
<span className="text-xs font-bold text-indigo-600">Required</span>
17361736
</div>
1737-
<p className={`text-[11px] truncate ${
1737+
<p className={`text-[11px] break-words ${
17381738
latestDegradedReasons.length > 0 ? 'text-amber-600' : 'text-gray-400'
1739-
}`} title={latestDegradedReasons.join(' | ')}>
1740-
degraded: {latestDegradedReasons[0] || 'none'}
1739+
}`}>
1740+
degraded: {latestDegradedReasons.length > 0 ? latestDegradedReasons.join(' · ') : 'none'}
17411741
</p>
17421742
</div>
17431743
</div>
@@ -1978,7 +1978,7 @@ export default function Dashboard() {
19781978
</span>
19791979
</div>
19801980
{agentLoop.lastCycle.error && (
1981-
<p className="text-[10px] text-red-400 truncate" title={agentLoop.lastCycle.error}>
1981+
<p className="text-[10px] text-red-400 break-words">
19821982
{agentLoop.lastCycle.error}
19831983
</p>
19841984
)}

0 commit comments

Comments
 (0)