Show commit author, not committer (#27856)

Release Notes:

- Fixed a bug where the git panel displayed a commit's committer in
place of its author.
This commit is contained in:
Max Brunsfeld 2025-04-01 09:55:56 -07:00 committed by GitHub
parent 76871056f5
commit ada8b0f822
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 13 additions and 13 deletions

View file

@ -375,7 +375,7 @@ fn format_commit(commit: &CommitDetails) -> String {
writeln!(
&mut result,
"Author: {} <{}>",
commit.committer_name, commit.committer_email
commit.author_name, commit.author_email
)
.unwrap();
writeln!(