mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-06-08 23:56:15 +02:00
Remove double space between rebase todo and author columns (#4520)
- **PR Description** In the commits list of an interactive rebase, the gap between the rebase todo column and the author column was two instead of one. Remove the extra space to make this gap the same as for all other columns.
This commit is contained in:
commit
ac9b830bf1
@ -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…
x
Reference in New Issue
Block a user