]> source.dussan.org Git - gitea.git/commitdiff
Don't link wiki revision to commit (#9244)
authormrsdizzie <info@mrsdizzie.com>
Tue, 3 Dec 2019 18:15:41 +0000 (13:15 -0500)
committertechknowlogick <techknowlogick@gitea.io>
Tue, 3 Dec 2019 18:15:41 +0000 (13:15 -0500)
In #7907 a change was made to use the same template for repo and wiki
commit lists. However, there is no code or logic for showing the diff of
a wiki commit so it just produces broken links like:

 http://localhost:3000/mrsdizzie/%!s(%3Cnil%3E)/commit/5e72eeb00896d3853ab22a01950a50119b249567

This just removes the link for now until that feature is implemented

templates/repo/commits_list.tmpl

index dee9dab2b53bbbe567cb533bda07b48d5a1a0773..010c3b227a681a1c5f4aec24573bc1542f0fd05d 100644 (file)
                                                </td>
                                                <td class="message">
                                                        <span class="message-wrapper">
+                                                       {{if $.PageIsWiki}}
+                                                               <span class="commit-summary has-emoji{{if gt .ParentCount 1}} grey text{{end}}" title="{{.Summary}}">{{.Summary}}</span>
+                                                       {{else }}
                                                                {{ $commitLink:= printf "%s/%s/%s/commit/%s" AppSubUrl $.Username $.Reponame .ID }}
                                                                <span class="commit-summary has-emoji{{if gt .ParentCount 1}} grey text{{end}}" title="{{.Summary}}">{{RenderCommitMessageLinkSubject .Message $.RepoLink $commitLink $.Repository.ComposeMetas}}</span>
+                                                       {{end}}
                                                        </span>
                                                        {{if IsMultilineCommitMessage .Message}}
                                                        <button class="basic compact mini ui icon button commit-button"><i class="ellipsis horizontal icon"></i></button>