diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2019-03-12 13:05:03 +0100 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2019-03-17 18:06:44 +0100 |
| commit | c871758a7153287e1bf51aafb422dfd8ca1cde7e (patch) | |
| tree | 8ab6c9efd2ef343acc8e37df25ea757534d32357 /dashboard/app/api.go | |
| parent | 5ed211ca96c6e6ab96fad7b5a495d81178ee98eb (diff) | |
dashboard/app: rename CommitInfo to Commit
Because why?
Diffstat (limited to 'dashboard/app/api.go')
| -rw-r--r-- | dashboard/app/api.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dashboard/app/api.go b/dashboard/app/api.go index 022e94963..32cab3871 100644 --- a/dashboard/app/api.go +++ b/dashboard/app/api.go @@ -327,7 +327,7 @@ func addCommitInfoToBugImpl(c context.Context, bug *Bug, com dashapi.Commit) (bo return false, nil } for len(bug.CommitInfo) < len(bug.Commits) { - bug.CommitInfo = append(bug.CommitInfo, CommitInfo{}) + bug.CommitInfo = append(bug.CommitInfo, Commit{}) } hash0 := bug.CommitInfo[ci].Hash date0 := bug.CommitInfo[ci].Date |
