diff --git a/pkg/gui/controllers/helpers/refresh_helper.go b/pkg/gui/controllers/helpers/refresh_helper.go index 332b38091..f75065e44 100644 --- a/pkg/gui/controllers/helpers/refresh_helper.go +++ b/pkg/gui/controllers/helpers/refresh_helper.go @@ -209,6 +209,7 @@ func (self *RefreshHelper) Refresh(options types.RefreshOptions) { func getScopeNames(scopes []types.RefreshableView) []string { scopeNameMap := map[types.RefreshableView]string{ types.COMMITS: "commits", + types.REBASE_COMMITS: "rebaseCommits", types.BRANCHES: "branches", types.FILES: "files", types.SUBMODULES: "submodules", @@ -221,7 +222,9 @@ func getScopeNames(scopes []types.RefreshableView) []string { types.STATUS: "status", types.BISECT_INFO: "bisect", types.STAGING: "staging", + types.PATCH_BUILDING: "patchBuilding", types.MERGE_CONFLICTS: "mergeConflicts", + types.COMMIT_FILES: "commitFiles", } return lo.Map(scopes, func(scope types.RefreshableView, _ int) string {