Added Telemetry Toggle

This commit is contained in:
2025-12-24 12:26:34 -05:00
parent 5b53612644
commit 8fe3a05d8b
4 changed files with 180 additions and 5 deletions
+2 -2
View File
@@ -58,7 +58,7 @@ class MultiAgentSelector(Widget):
def compose(self):
yield Header(show_clock=True, icon="")
title_text = Static("🖥️ Agent Selector", id="selector_title")
title_text = Static("🖥️ Agent Selector", id="selector_title")
title_text.styles.margin = (0, 0, 0, 1)
yield title_text
@@ -175,7 +175,7 @@ class MultiAgentSelector(Widget):
match_list.add_option((name, name))
unmatched_label = self.query_one("#unmatched_label", Static)
if unmatched:
unmatched_label.update(f"⚠️ No matches for: {', '.join(unmatched)}")
unmatched_label.update(f"No matches for: {', '.join(unmatched)}")
else:
unmatched_label.update("")