diff options
| author | Jeff Carr <[email protected]> | 2025-10-27 10:45:25 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-27 10:45:25 -0500 |
| commit | 9e98e0b36d794d4acb7bc81909ee94598a43b37c (patch) | |
| tree | 1144dea4a8676d90eb024651efad58591e3c6ceb /tableDefault.go | |
| parent | b7e832d8a5a00ed6647735b8c9a3151cb8496899 (diff) | |
work on a Cache setting concept
Diffstat (limited to 'tableDefault.go')
| -rw-r--r-- | tableDefault.go | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tableDefault.go b/tableDefault.go index 909a6ca..eb6d135 100644 --- a/tableDefault.go +++ b/tableDefault.go @@ -3,6 +3,8 @@ package forgepb import ( + "fmt" + "go.wit.com/lib/cobol" "go.wit.com/lib/protobuf/gitpb" "go.wit.com/log" @@ -62,7 +64,7 @@ func (f *Forge) makeDefaultTB(pb *gitpb.Repos) *gitpb.ReposTable { col = t.AddNamespace() col.Width = 33 - col.Header.Name = "Namespace " + f.mode.String() + col.Header.Name = fmt.Sprintf("Cache(%s) mode(%s)", f.cache.Name, f.mode.String()) col = t.AddCurrentBranchName() col.Width = 7 |
