missing field from hide

Signed-off-by: Jeff Carr <jcarr@wit.com>
This commit is contained in:
Jeff Carr 2024-01-25 02:37:04 -06:00
parent 7aec6279b5
commit 0d50395628
1 changed files with 2 additions and 0 deletions

View File

@ -51,6 +51,7 @@ func (r *repo) Hide() {
r.userVersion.Hide()
r.dirtyLabel.Hide()
r.goSumStatus.Hide()
r.statusButton.Hide()
r.hidden = true
}
@ -65,6 +66,7 @@ func (r *repo) Show() {
r.userVersion.Show()
r.dirtyLabel.Show()
r.goSumStatus.Show()
r.statusButton.Show()
r.hidden = false
}