diff options
author | Lunny Xiao <xiaolunwen@gmail.com> | 2023-05-06 17:39:06 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-06 17:39:06 +0800 |
commit | e5a8ebc0ed2553a16bac4b54a74cc3e5e8036b32 (patch) | |
tree | c26686d3793d3908c9f55a11be242103ff1ea04b /templates/explore | |
parent | 0ebabf3c6b12a0c3fe8f54398b4bb5a1d2cbeebf (diff) | |
download | gitea-e5a8ebc0ed2553a16bac4b54a74cc3e5e8036b32.tar.gz gitea-e5a8ebc0ed2553a16bac4b54a74cc3e5e8036b32.zip |
Require at least one unit to be enabled (#24189)
Don't remember why the previous decision that `Code` and `Release` are
non-disable units globally. Since now every unit include `Code` could be
disabled, maybe we should have a new rule that the repo should have at
least one unit. So any unit could be disabled.
Fixes #20960
Fixes #7525
---------
Co-authored-by: delvh <dev.lh@web.de>
Co-authored-by: yp05327 <576951401@qq.com>
Diffstat (limited to 'templates/explore')
-rw-r--r-- | templates/explore/navbar.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/explore/navbar.tmpl b/templates/explore/navbar.tmpl index 3a23df6992..3a556812f9 100644 --- a/templates/explore/navbar.tmpl +++ b/templates/explore/navbar.tmpl @@ -10,7 +10,7 @@ <a class="{{if .PageIsExploreOrganizations}}active {{end}}item" href="{{AppSubUrl}}/explore/organizations"> {{svg "octicon-organization"}} {{.locale.Tr "explore.organizations"}} </a> - {{if .IsRepoIndexerEnabled}} + {{if and (not $.UnitTypeCode.UnitGlobalDisabled) .IsRepoIndexerEnabled}} <a class="{{if .PageIsExploreCode}}active {{end}}item" href="{{AppSubUrl}}/explore/code"> {{svg "octicon-code"}} {{.locale.Tr "explore.code"}} </a> |