From 8bd8d85e6cb9fc8c7899453e59c6a0dd96e5ed28 Mon Sep 17 00:00:00 2001 From: Thomas Marchand Date: Fri, 16 Jan 2026 14:14:06 +0000 Subject: [PATCH] Fix agent name badge truncation in iOS phase bubble Replace fixedSize modifier with truncationMode(.tail) to properly show ellipsis when agent names are too long to fit. --- .../OpenAgentDashboard/Views/Control/ControlView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ios_dashboard/OpenAgentDashboard/Views/Control/ControlView.swift b/ios_dashboard/OpenAgentDashboard/Views/Control/ControlView.swift index 1cad4f8..3ef53c0 100644 --- a/ios_dashboard/OpenAgentDashboard/Views/Control/ControlView.swift +++ b/ios_dashboard/OpenAgentDashboard/Views/Control/ControlView.swift @@ -1693,7 +1693,7 @@ private struct PhaseBubble: View { .font(.caption2.monospaced()) .foregroundStyle(Theme.textMuted) .lineLimit(1) - .fixedSize(horizontal: true, vertical: false) + .truncationMode(.tail) .padding(.horizontal, 6) .padding(.vertical, 2) .background(Theme.backgroundTertiary)