style(tui): replace header dots with spacing

This commit is contained in:
chengyongru
2026-08-31 17:03:24 +08:00
committed by chengyongru
parent feb33e1f99
commit e69159cdae
4 changed files with 9 additions and 9 deletions
+3 -3
View File
@@ -310,11 +310,11 @@ export class RuntimeControls {
private render(): void {
const runtime = this.modelPreset !== "default"
? [this.modelPreset, this.model].filter(Boolean).join(" · ")
? [this.modelPreset, this.model].filter(Boolean).join(" ")
: this.model
this.modelText.content = ` · ${runtime}`
this.modelText.content = ` ${runtime}`
const access = this.scope.access_mode === "full" ? "full access" : "workspace access"
this.accessText.content = ` · ${access}`
this.accessText.content = ` ${access}`
this.renderColors()
}