diff options
| -rw-r--r-- | internal/ui/table.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/internal/ui/table.go b/internal/ui/table.go index 8d1b07c..88ddf6a 100644 --- a/internal/ui/table.go +++ b/internal/ui/table.go @@ -271,6 +271,7 @@ func (m Model) statusLine() string { return lipgloss.NewStyle(). Foreground(lipgloss.Color("229")). Background(lipgloss.Color("57")). + Width(m.tbl.Width()). Render(status) } @@ -283,6 +284,7 @@ func (m Model) topStatusLine() string { return lipgloss.NewStyle(). Foreground(lipgloss.Color("229")). Background(lipgloss.Color("57")). + Width(m.tbl.Width()). Render(header) } |
