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

Backport #26340 by @CaiCandong

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)

fix #26336

Co-authored-by: CaiCandong <50507092+CaiCandong@users.noreply.github.com>
(cherry picked from commit 59354d7135c4d380e11cb35ae0ac59a0ec7bf041)
This commit is contained in:
Giteabot 2023-08-06 00:08:17 +08:00 committed by Earl Warren
parent 92589b9b8d
commit f597c789e1
No known key found for this signature in database
GPG key ID: 0579CB2928A78A00

View file

@ -711,9 +711,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>