diff --git a/messages/en.json b/messages/en.json
index fcb57d7..30a603d 100644
--- a/messages/en.json
+++ b/messages/en.json
@@ -1830,6 +1830,8 @@
"tabPipelines": "Pipelines",
"tabFleet": "Fleet",
"selectAgent": "Select agent...",
+ "noAgentsRegistered": "No agents registered",
+ "noSessionSuffix": "no session",
"commandPlaceholder": "Send command or message to agent...",
"send": "Send",
"noTemplates": "No workflow templates yet",
diff --git a/src/components/panels/orchestration-bar.tsx b/src/components/panels/orchestration-bar.tsx
index 116605e..4044d0a 100644
--- a/src/components/panels/orchestration-bar.tsx
+++ b/src/components/panels/orchestration-bar.tsx
@@ -268,9 +268,12 @@ export function OrchestrationBar() {
className="h-9 px-2 rounded-md bg-secondary border border-border text-sm text-foreground min-w-[140px]"
>
- {agents.filter(a => a.session_key).map(a => (
-
+ )}
+ {agents.map(a => (
+
))}