File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1- {{range .GroupCommits}}
2- <div class="ui timeline commits-list-group-by-date">
1+ {{range $index, $groupCommit := .GroupCommits}}
2+ <div class="ui timeline commits-list-group-by-date" data-index="{{$index}}" >
33
44 <div class="timeline-badge-wrapper">
55 <div class="timeline-badge">
99
1010 <div class="timeline-body">
1111 <h3 class="flex-text-block tw-py-2 timeline-heading">
12- Commits on {{DateUtils.AbsoluteShort .Date}}
12+ Commits on {{DateUtils.AbsoluteShort $groupCommit .Date}}
1313 </h3>
1414 <div class="tw-flex tw-mt-2 timeline-list-container">
1515 <ul class="commits-list">
16- {{range .Commits}}
16+ {{range $groupCommit .Commits}}
1717 {{$commitRepoLink := $.RepoLink}}{{if $.CommitRepoLink}}{{$commitRepoLink = $.CommitRepoLink}}{{end}}
1818 <li class="commits-list-item">
1919 <div class="tw-pt-4 tw-pl-4 title">
Original file line number Diff line number Diff line change @@ -2287,7 +2287,7 @@ tbody.commit-list {
22872287 padding-bottom : 6px ;
22882288}
22892289
2290- .commits-list-group-by-date .timeline [data-index = "1 " ] {
2290+ .commits-list-group-by-date .timeline [data-index = "0 " ] {
22912291 margin-top : 6px ;
22922292}
22932293
You can’t perform that action at this time.
0 commit comments