Browse Source

Fix graph pagination (#15225)

* Fixed invalid HTML tag.

* Fixed pagination.

* Update templates/repo/graph/commits.tmpl

Co-authored-by: zeripath <art27@cantab.net>

Co-authored-by: zeripath <art27@cantab.net>
Co-authored-by: techknowlogick <techknowlogick@gitea.io>
Co-authored-by: 6543 <6543@obermui.de>
Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
tags/v1.15.0-rc1
KN4CK3R 3 years ago
parent
commit
bc1f2117f1
No account linked to committer's email address
2 changed files with 2 additions and 4 deletions
  1. 2
    2
      templates/repo/graph/commits.tmpl
  2. 0
    2
      web_src/less/features/gitgraph.less

+ 2
- 2
templates/repo/graph/commits.tmpl View File

@@ -1,9 +1,9 @@
<div id="rev-container">
<ul id="rev-list">
{{ 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 }}
<span />
<span></span>
{{ else }}
<span class="sha" id="{{$commit.ShortRev}}">
{{$class := "ui sha label"}}

+ 0
- 2
web_src/less/features/gitgraph.less View File

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

Loading…
Cancel
Save