From b0e65e39808e10b209bad30f0d2972d35503ea24 Mon Sep 17 00:00:00 2001 From: AzuTear Date: Sun, 14 Jun 2026 15:56:40 +0200 Subject: [PATCH] style: strengthen flow lines and tighten modal demo parity --- frontend/src/components/dashboard/v2/AgentDetailModal.vue | 8 +++++++- frontend/src/components/dashboard/v2/FlowCanvas.vue | 4 ++-- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/frontend/src/components/dashboard/v2/AgentDetailModal.vue b/frontend/src/components/dashboard/v2/AgentDetailModal.vue index f050143..30c6623 100644 --- a/frontend/src/components/dashboard/v2/AgentDetailModal.vue +++ b/frontend/src/components/dashboard/v2/AgentDetailModal.vue @@ -87,6 +87,12 @@ const statusColors: Record = { idle: 'var(--st-idle)', block: 'var(--st-block)', } + +function avatarLabel() { + if (props.agent.id === 'iris') return 'IR' + if (props.agent.name === 'Full-Stack Developer') return '' + return props.agent.name.slice(0, 2).toUpperCase() +}