Revert "[BUG] Remember topic only in repo search"

This reverts commit b4360d504c.
This commit is contained in:
Earl Warren 2024-03-04 10:29:41 +08:00
parent 99b1a39aef
commit a39f69ac28
No known key found for this signature in database
GPG Key ID: 0579CB2928A78A00
2 changed files with 0 additions and 14 deletions

View File

@ -2,7 +2,6 @@
<form class="ui form ignore-dirty gt-f1">
<input type="hidden" name="sort" value="{{$.SortType}}">
<input type="hidden" name="language" value="{{$.Language}}">
<input type="hidden" name="topic" value="{{$.TopicOnly}}">
<div class="ui fluid action input">
{{template "shared/searchinput" dict "Value" .Keyword}}
{{if .PageIsExploreRepositories}}

View File

@ -8,7 +8,6 @@ import (
"testing"
"code.gitea.io/gitea/tests"
"github.com/stretchr/testify/assert"
)
func TestExploreRepos(t *testing.T) {
@ -16,16 +15,4 @@ func TestExploreRepos(t *testing.T) {
req := NewRequest(t, "GET", "/explore/repos")
MakeRequest(t, req, http.StatusOK)
t.Run("Persistent parameters", func(t *testing.T) {
defer tests.PrintCurrentTest(t)()
req := NewRequest(t, "GET", "/explore/repos?topic=1&language=Go&sort=moststars")
resp := MakeRequest(t, req, http.StatusOK)
htmlDoc := NewHTMLParser(t, resp.Body)
assert.EqualValues(t, "moststars", htmlDoc.Find("input[type='hidden'][name='sort']").AttrOr("value", "not found"))
assert.EqualValues(t, "Go", htmlDoc.Find("input[type='hidden'][name='language']").AttrOr("value", "not found"))
assert.EqualValues(t, "true", htmlDoc.Find("input[type='hidden'][name='topic']").AttrOr("value", "not found"))
})
}