1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-07-31 14:24:25 +03:00

Merge pull request #2239 from bdach/u2f-key-prompts

close https://github.com/jesseduffield/lazygit/issues/2230
This commit is contained in:
Jesse Duffield
2022-12-20 21:44:29 +11:00
committed by GitHub
3 changed files with 6 additions and 0 deletions

View File

@ -61,6 +61,8 @@ func (self *CredentialsHelper) getTitleAndMask(passOrUname oscommands.Credential
return self.c.Tr.CredentialsPassword, true
case oscommands.Passphrase:
return self.c.Tr.CredentialsPassphrase, true
case oscommands.PIN:
return self.c.Tr.CredentialsPIN, true
}
// should never land here