[GITEA] Use correct tab value for repo search

- Use the correct tab value for repo search by letting the templates
pass the right value.
- Resolves https://codeberg.org/forgejo/forgejo/issues/1516
This commit is contained in:
Gusted 2023-10-21 23:30:07 +02:00
parent af51dd594d
commit 83fc797493
No known key found for this signature in database
GPG key ID: FD821B732837125F
2 changed files with 4 additions and 4 deletions

View file

@ -6,8 +6,8 @@
{{template "shared/searchinput" dict "Value" .Keyword "AutoFocus" true}}
{{if .PageIsExploreRepositories}}
<input type="hidden" name="only_show_relevant" value="{{.OnlyShowRelevant}}">
{{else}}
<input type="hidden" name="tab" value="repositories">
{{else if .tab}}
<input type="hidden" name="tab" value="{{.tab}}">
{{end}}
<button class="ui primary button">{{ctx.Locale.Tr "explore.search"}}</button>
</div>

View file

@ -20,7 +20,7 @@
{{template "user/dashboard/feeds" .}}
{{else if eq .TabName "stars"}}
<div class="stars">
{{template "explore/repo_search" .}}
{{template "explore/repo_search" (dict "." . "tab" "stars")}}
{{template "explore/repo_list" .}}
{{template "base/paginate" .}}
</div>
@ -31,7 +31,7 @@
{{else if eq .TabName "overview"}}
<div id="readme_profile" class="markup">{{.ProfileReadme | Str2html}}</div>
{{else}}
{{template "explore/repo_search" .}}
{{template "explore/repo_search" (dict "ctxData" . "tab" "repositories")}}
{{template "explore/repo_list" .}}
{{template "base/paginate" .}}
{{end}}