Skip to content

Commit f2370e5

Browse files
Display version number in grey color for consistency (#139)
Changed the version display in the welcome screen to use grey color for the entire 'Version: X.Y.Z' text, matching other informational text elements in the TUI. Previously, the version number was displayed in white while the label was in grey. Co-authored-by: openhands <openhands@all-hands.dev>
1 parent 258ce2e commit f2370e5

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

openhands_cli/tui/tui.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -97,9 +97,7 @@ def display_welcome(conversation_id: UUID, resume: bool = False) -> None:
9797

9898
# Check for updates and display version info
9999
version_info = check_for_updates()
100-
print_formatted_text(
101-
HTML(f"<grey>Version:</grey> <white>{version_info.current_version}</white>")
102-
)
100+
print_formatted_text(HTML(f"<grey>Version: {version_info.current_version}</grey>"))
103101

104102
if version_info.needs_update and version_info.latest_version:
105103
print_formatted_text(

0 commit comments

Comments
 (0)