diff options
author | T <t@tjp.lol> | 2025-08-06 16:54:24 -0600 |
---|---|---|
committer | T <t@tjp.lol> | 2025-08-06 16:56:46 -0600 |
commit | d75bd93385bf3b54ada84c3d45011d7f8efc1f80 (patch) | |
tree | cd50a2f300afaa24a48b3df84a2eb4a0af2429eb /internal/tui/projects_box.go | |
parent | c53e8c4e41aa88566b101431bcd104ebf7b34312 (diff) |
auto scrolling the history view
Diffstat (limited to 'internal/tui/projects_box.go')
-rw-r--r-- | internal/tui/projects_box.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/tui/projects_box.go b/internal/tui/projects_box.go index f90ac03..38fd96a 100644 --- a/internal/tui/projects_box.go +++ b/internal/tui/projects_box.go @@ -37,7 +37,7 @@ func (m ClientsProjectsModel) View(width, height int, isSelected bool) string { style = selectedBoxStyle } - title := "👥 Clients & Projects" + title := titleStyle.Render("👥 Clients & Projects") return style.Width(width).Height(height).Render( fmt.Sprintf("%s\n\n%s", title, content), |