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

@ -3364,8 +3364,8 @@ message GitCommitDetails {
string sha = 1;
string message = 2;
int64 commit_timestamp = 3;
string committer_email = 4;
string committer_name = 5;
string author_email = 4;
string author_name = 5;
}
message LoadCommitDiff {