summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--internal/ui/table.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/internal/ui/table.go b/internal/ui/table.go
index ad64378..fc1540c 100644
--- a/internal/ui/table.go
+++ b/internal/ui/table.go
@@ -312,6 +312,7 @@ func (m Model) statusLine() string {
return lipgloss.NewStyle().
Foreground(lipgloss.Color("229")).
Background(lipgloss.Color("57")).
+ Width(m.tbl.Width()).
Render(status)
}
@@ -324,6 +325,7 @@ func (m Model) topStatusLine() string {
return lipgloss.NewStyle().
Foreground(lipgloss.Color("229")).
Background(lipgloss.Color("57")).
+ Width(m.tbl.Width()).
Render(header)
}