From f18cc4c0ba29186ebede1ca34d7730c329ee10d7 Mon Sep 17 00:00:00 2001 From: GitHub Copilot Date: Thu, 29 Jan 2026 23:19:08 +0000 Subject: [PATCH] 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. --- src/webterm/local_server.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/webterm/local_server.py b/src/webterm/local_server.py index a983bc6..529e7c4 100644 --- a/src/webterm/local_server.py +++ b/src/webterm/local_server.py @@ -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