1
0
mirror of https://github.com/osmarks/mycorrhiza.git synced 2024-12-13 05:50:27 +00:00

Recent changes: Make the hash span, not link

This commit is contained in:
Timur Ismagilov 2021-08-08 22:20:20 +05:00
parent 1ee8f5b409
commit 9eae5e6256
2 changed files with 3 additions and 3 deletions

View File

@ -93,7 +93,7 @@ if err != nil {
<time class="recent-changes__entry__time">
{%s rev.Time.UTC().Format("15:04 UTC") %}
</time>
<a class="recent-changes__entry__message">{%s rev.Hash %}</a>
<span class="recent-changes__entry__message">{%s rev.Hash %}</span>
{% if rev.Username != "anon" %}
<span class="recent-changes__entry__author">

View File

@ -311,11 +311,11 @@ func streamrecentChangesEntry(qw422016 *qt422016.Writer, rev history.Revision) {
//line views/history.qtpl:94
qw422016.N().S(`
</time>
<a class="recent-changes__entry__message">`)
<span class="recent-changes__entry__message">`)
//line views/history.qtpl:96
qw422016.E().S(rev.Hash)
//line views/history.qtpl:96
qw422016.N().S(`</a>
qw422016.N().S(`</span>
`)
//line views/history.qtpl:98