mirror of
https://github.com/go-gitea/gitea.git
synced 2025-05-31 00:01:17 -04:00
fix
This commit is contained in:
parent
69e05054cd
commit
22f9a514ea
@ -1,5 +1,5 @@
|
||||
{{range .GroupCommits}}
|
||||
<div class="ui timeline commits-list-group-by-date">
|
||||
{{range $index, $groupCommit := .GroupCommits}}
|
||||
<div class="ui timeline commits-list-group-by-date" data-index="{{$index}}">
|
||||
|
||||
<div class="timeline-badge-wrapper">
|
||||
<div class="timeline-badge">
|
||||
@ -9,11 +9,11 @@
|
||||
|
||||
<div class="timeline-body">
|
||||
<h3 class="flex-text-block tw-py-2 timeline-heading">
|
||||
Commits on {{DateUtils.AbsoluteShort .Date}}
|
||||
Commits on {{DateUtils.AbsoluteShort $groupCommit.Date}}
|
||||
</h3>
|
||||
<div class="tw-flex tw-mt-2 timeline-list-container">
|
||||
<ul class="commits-list">
|
||||
{{range .Commits}}
|
||||
{{range $groupCommit.Commits}}
|
||||
{{$commitRepoLink := $.RepoLink}}{{if $.CommitRepoLink}}{{$commitRepoLink = $.CommitRepoLink}}{{end}}
|
||||
<li class="commits-list-item">
|
||||
<div class="tw-pt-4 tw-pl-4 title">
|
||||
|
@ -2287,7 +2287,7 @@ tbody.commit-list {
|
||||
padding-bottom: 6px;
|
||||
}
|
||||
|
||||
.commits-list-group-by-date.timeline[data-index="1"] {
|
||||
.commits-list-group-by-date.timeline[data-index="0"] {
|
||||
margin-top: 6px;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user