Skip to content

Commit

Permalink
Fix colours used in radio set
Browse files Browse the repository at this point in the history
  • Loading branch information
darrenburns committed Sep 8, 2024
1 parent 7d21f7d commit 70763d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion elia_chat/widgets/chat_options.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def compose(self) -> ComposeResult:
selected_model = self.runtime_config.selected_model
models_rs.border_title = "Available Models"
for model in self.elia.launch_config.all_models:
label = f"[dim]{escape(model.display_name or model.name)}"
label = f"{escape(model.display_name or model.name)}"
provider = model.provider
if provider:
label += f" [i]by[/] {provider}"
Expand Down

0 comments on commit 70763d9

Please sign in to comment.