Fix graph pagination (#15225) (#15249)

* Fixed invalid HTML tag.

* Fixed pagination.

* Update templates/repo/graph/commits.tmpl

Co-authored-by: zeripath <art27@cantab.net>
mj-v1.14.3
KN4CK3R 3 years ago committed by GitHub
parent c6eb9b30ae
commit 8ec7beb9f4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,9 +1,9 @@
<div id="rev-container"> <div id="rev-container">
<ul id="rev-list"> <ul id="rev-list">
{{ range $commitI, $commit := .Graph.Commits }} {{ range $commitI, $commit := .Graph.Commits }}
<li id="commit-{{$commit.Rev}}" data-flow="{{$commit.Flow}}"> <li {{if $commit.Rev}}id="commit-{{$commit.Rev}}"{{end}} data-flow="{{$commit.Flow}}">
{{ if $commit.OnlyRelation }} {{ if $commit.OnlyRelation }}
<span /> <span></span>
{{ else }} {{ else }}
<span class="sha" id="{{$commit.ShortRev}}"> <span class="sha" id="{{$commit.ShortRev}}">
{{$class := "ui sha label"}} {{$class := "ui sha label"}}

@ -1,6 +1,4 @@
#git-graph-container { #git-graph-container {
float: left;
display: block;
overflow-x: scroll; overflow-x: scroll;
width: 100%; width: 100%;
min-height: 350px; min-height: 350px;

Loading…
Cancel
Save