1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-06-15 00:15:32 +02:00

fix: typo EnteRefName

This commit is contained in:
Amirzhan Aliyev
2023-06-28 18:54:21 +06:00
parent 69df9ba105
commit 62cc036254
8 changed files with 9 additions and 9 deletions

View File

@ -35,7 +35,7 @@ func (self *DiffingMenuAction) Call() error {
Label: self.c.Tr.EnterRefToDiff,
OnPress: func() error {
return self.c.Prompt(types.PromptOpts{
Title: self.c.Tr.EnteRefName,
Title: self.c.Tr.EnterRefName,
FindSuggestionsFunc: self.c.Helpers().Suggestions.GetRefsSuggestionsFunc(),
HandleConfirm: func(response string) error {
self.c.Modes().Diffing.Ref = strings.TrimSpace(response)