From af65616d4113375a2e79d1b8981e54980373414a Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Fri, 10 Oct 2025 09:05:52 -0500 Subject: show full State --- tableMissing.go | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/tableMissing.go b/tableMissing.go index fe729dd..0a13923 100644 --- a/tableMissing.go +++ b/tableMissing.go @@ -109,6 +109,10 @@ func (pb *Repos) MakeDefaultTB() *ReposTable { col.Width = 12 col.Header.Name = "master" + col = t.AddLastTag() + col.Width = 12 + col.Header.Name = "lasttag" + col = t.AddStringFunc("type", func(r *Repo) string { return getRepoType(r) }) @@ -124,10 +128,11 @@ func (pb *Repos) MakeDefaultTB() *ReposTable { col.Width = 3 */ + col = t.AddURL() + col.Width = 20 + col = t.AddState() - col.Width = 12 + col.Width = -1 - col = t.AddURL() - col.Width = 42 return t } -- cgit v1.2.3