fix: hide auto-command placeholder in dashboard

When a session uses the auto command sentinel, the dashboard now leaves
the command label blank instead of showing a placeholder string.
This commit is contained in:
GitHub Copilot
2026-01-29 23:19:08 +00:00
parent 3bf68117a8
commit f18cc4c0ba
+1 -1
View File
@@ -340,7 +340,7 @@ class LocalClientConnector(SessionConnector):
def _format_command_label(command: str) -> str:
"""Format command for display in UI, replacing sentinel with readable label."""
if command == AUTO_COMMAND_SENTINEL:
return "(tmux persistent session)"
return ""
return command