diff options
| author | Jeff Carr <[email protected]> | 2025-02-21 18:31:26 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-02-21 18:31:26 -0600 |
| commit | 1a255bdbf64f2cb0f87e532bed82cce42f77a741 (patch) | |
| tree | 5496c1f2ec9f8482e5ae3f6c42d51b74cd7bc9f9 /windowFound.go | |
| parent | 66e65c7a004eb37f01935ea13fd78dae7de21e7e (diff) | |
start deprecating me.found
Diffstat (limited to 'windowFound.go')
| -rw-r--r-- | windowFound.go | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/windowFound.go b/windowFound.go index 4639835..9b085f1 100644 --- a/windowFound.go +++ b/windowFound.go @@ -62,9 +62,8 @@ func (r *foundWindow) initWindow() { group1 := r.stack.NewGroup("Repo Summary") group1.NewButton("dirty", func() { log.Info("find dirty here") - me.found = new(gitpb.Repos) - findDirty() - me.forge.PrintHumanTable(me.found) + found := findDirty() + me.forge.PrintHumanTable(found) }) group1.NewButton("all", func() { log.Info("find all here") |
