works in all pb tables

This commit is contained in:
Jeff Carr 2025-03-05 20:21:50 -06:00
parent cad4ed3d29
commit 8f4f351885
1 changed files with 8 additions and 0 deletions

View File

@ -127,6 +127,10 @@ func makeReposWin() *gadgets.GenericWindow {
}
// display the protobuf
t = addWindowPB(insertWin, found)
f := func(repo *gitpb.Repo) {
log.Info("got to ReposTable.Custom() id =", repo.GetGoPath(), repo.GetCurrentVersion())
}
t.Custom(f)
log.Info("table has uuid", t.GetUuid())
})
@ -149,6 +153,10 @@ func makeReposWin() *gadgets.GenericWindow {
// make the window for the first time
t = addWindowPB(insertWin, found)
f := func(repo *gitpb.Repo) {
log.Info("got to ReposTable.Custom() id =", repo.GetGoPath(), repo.GetCurrentVersion())
}
t.Custom(f)
log.Info("table has uuid", t.GetUuid())
})
})