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:
@@ -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!(
|
||||
|
||||
Reference in New Issue
Block a user