summaryrefslogtreecommitdiffstats
path: root/pkg/gui/presentation
diff options
context:
space:
mode:
authorpikomonde <32364823+pikomonde@users.noreply.github.com>2024-03-21 02:23:10 +0700
committerStefan Haller <stefan@haller-berlin.de>2024-04-12 08:33:47 +0200
commit19bef17042c4a9426afcefc89fcc9ce672fb2216 (patch)
tree82e2a33d3e9ca6bd89d69ef22fcc557c2afafd5f /pkg/gui/presentation
parent170c4ecb8cca77be883f6eebcb46a7631f82ff65 (diff)
rename sha to hash 10, last remaining sha (hopefully)
Diffstat (limited to 'pkg/gui/presentation')
-rw-r--r--pkg/gui/presentation/reflog_commits.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkg/gui/presentation/reflog_commits.go b/pkg/gui/presentation/reflog_commits.go
index b40f33b23..b97064d51 100644
--- a/pkg/gui/presentation/reflog_commits.go
+++ b/pkg/gui/presentation/reflog_commits.go
@@ -40,12 +40,12 @@ func reflogHashColor(cherryPicked, diffed bool) style.TextStyle {
return theme.DiffTerminalColor
}
- shaColor := style.FgBlue
+ hashColor := style.FgBlue
if cherryPicked {
- shaColor = theme.CherryPickedCommitTextStyle
+ hashColor = theme.CherryPickedCommitTextStyle
}
- return shaColor
+ return hashColor
}
type reflogCommitDisplayAttributes struct {