diff --git a/pkg/gui/controllers/helpers/refresh_helper.go b/pkg/gui/controllers/helpers/refresh_helper.go index 46130231f..5682bbb1f 100644 --- a/pkg/gui/controllers/helpers/refresh_helper.go +++ b/pkg/gui/controllers/helpers/refresh_helper.go @@ -607,6 +607,12 @@ func (self *RefreshHelper) refreshWorktrees() error { self.c.Model().Worktrees = worktrees + // need to refresh branches because the branches view shows worktrees against + // branches + if err := self.c.PostRefreshUpdate(self.c.Contexts().Branches); err != nil { + return err + } + return self.c.PostRefreshUpdate(self.c.Contexts().Worktrees) } diff --git a/pkg/integration/tests/worktree/detach_worktree_from_branch.go b/pkg/integration/tests/worktree/detach_worktree_from_branch.go index 4dd3c23fd..09b3146e5 100644 --- a/pkg/integration/tests/worktree/detach_worktree_from_branch.go +++ b/pkg/integration/tests/worktree/detach_worktree_from_branch.go @@ -35,7 +35,7 @@ var DetachWorktreeFromBranch = NewIntegrationTest(NewIntegrationTestArgs{ }). Lines( Contains("mybranch"), - Contains("newbranch").DoesNotContain("(worktree").IsSelected(), + Contains("newbranch").DoesNotContain("(worktree)").IsSelected(), ) t.Views().Worktrees(). diff --git a/pkg/integration/tests/worktree/remove_worktree_from_branch.go b/pkg/integration/tests/worktree/remove_worktree_from_branch.go index 06c729edb..2885f5669 100644 --- a/pkg/integration/tests/worktree/remove_worktree_from_branch.go +++ b/pkg/integration/tests/worktree/remove_worktree_from_branch.go @@ -46,7 +46,7 @@ var RemoveWorktreeFromBranch = NewIntegrationTest(NewIntegrationTestArgs{ }). Lines( Contains("mybranch"), - Contains("newbranch").DoesNotContain("(worktree").IsSelected(), + Contains("newbranch").DoesNotContain("(worktree)").IsSelected(), ) t.Views().Worktrees().