Skip to content

Commit

Permalink
fix(revisions): add space after root()
Browse files Browse the repository at this point in the history
  • Loading branch information
idursun committed Mar 7, 2025
1 parent 27c63f8 commit 9a8be38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/ui/graph/default_row_renderer.go
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ func (s DefaultRowRenderer) RenderAuthor(commit *jj.Commit) string {
authorStyle = authorStyle.Background(s.HighlightBackground)
}
if commit.IsRoot() {
return placeholderStyle.Render("root()")
return placeholderStyle.Render(" root()")
}
return authorStyle.Render("", commit.Author)
}
Expand Down

0 comments on commit 9a8be38

Please sign in to comment.