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

better presentation of remotes

This commit is contained in:
Jesse Duffield
2020-03-27 22:53:50 +11:00
parent 61b4bbf74e
commit d0336fe16f
5 changed files with 12 additions and 29 deletions

View File

@ -170,9 +170,8 @@ func (c *GitCommand) GetStashEntries() []*StashEntry {
func stashEntryFromLine(line string, index int) *StashEntry {
return &StashEntry{
Name: line,
Index: index,
DisplayString: line,
Name: line,
Index: index,
}
}