1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-07-30 03:23:08 +03:00

rename sha to hash 10, last remaining sha (hopefully)

This commit is contained in:
pikomonde
2024-03-21 02:23:10 +07:00
committed by Stefan Haller
parent 170c4ecb8c
commit 19bef17042
5 changed files with 21 additions and 21 deletions

View File

@ -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 {