fix: mismatched facet link key/values
1 file changed, 1 insertion(+), 1 deletion(-)
changed files
M internal/components/data.go → internal/components/data.go
@@ -86,7 +86,7 @@ func (u SearchNav) SetFacet(field string, term string) string { nu := u.URL q := nu.Query() - q.Set(term, field) + q.Set(field, term) nu.RawQuery = q.Encode() return nu.String()