Browse Source

Hide `last indexed SHA` when a repo could not be indexed yet (#26340)

Now, for a new repo without any commit, the Last indexed SHA field looks like this:
Before:
![image](https://github.com/go-gitea/gitea/assets/50507092/cecc6e24-3366-4093-ae07-c361ea34b373)
After: 
![image](https://github.com/go-gitea/gitea/assets/50507092/9b6ba703-b0d5-4648-ad6b-9a2341dd60f9)

Fixes #26336
tags/v1.21.0-rc0
CaiCandong 9 months ago
parent
commit
9ac6bb053c
No account linked to committer's email address
1 changed files with 4 additions and 2 deletions
  1. 4
    2
      templates/repo/settings/options.tmpl

+ 4
- 2
templates/repo/settings/options.tmpl View File

@@ -680,9 +680,11 @@
{{end}}
<h4 class="ui header">{{.locale.Tr "repo.settings.admin_stats_indexer"}}</h4>
<div class="inline fields">
<label>{{.locale.Tr "repo.settings.admin_indexer_commit_sha"}}</label>
{{if and .StatsIndexerStatus .StatsIndexerStatus.CommitSha}}
<label>{{.locale.Tr "repo.settings.admin_indexer_commit_sha"}}</label>
{{end}}
<span class="field">
{{if .StatsIndexerStatus}}
{{if and .StatsIndexerStatus .StatsIndexerStatus.CommitSha}}
<a rel="nofollow" class="ui sha label" href="{{.RepoLink}}/commit/{{.StatsIndexerStatus.CommitSha}}">
<span class="shortsha">{{ShortSha .StatsIndexerStatus.CommitSha}}</span>
</a>

Loading…
Cancel
Save