mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-05-11 04:15:48 +02:00
Remove space after rebase todo
This is very old; I can only guess that this was added at a time where today's list column handling wasn't in place yet, so the space was needed to separate columns. This now causes a gap of two spaces between the rebase todo column and the author column, which I'm sure wasn't intended. Funny that I never noticed.
This commit is contained in:
parent
3ff1be0788
commit
6402c830d5
5 changed files with 39 additions and 39 deletions
|
@ -387,7 +387,7 @@ func displayCommit(
|
|||
|
||||
actionString := ""
|
||||
if commit.Action != models.ActionNone {
|
||||
actionString = actionColorMap(commit.Action, commit.Status).Sprint(commit.Action.String()) + " "
|
||||
actionString = actionColorMap(commit.Action, commit.Status).Sprint(commit.Action.String())
|
||||
}
|
||||
|
||||
tagString := ""
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue