summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tableMissing.go11
1 files 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
}