Monorepo for Tangled tangled.org
8

Configure Feed

Select the types of activity you want to include in your feed.

appview/models: tweak empty search check

Signed-off-by: oppiliappan <me@oppi.li>

author
oppiliappan
date (Apr 2, 2026, 4:29 AM +0100) commit c900d843 parent b5bd24dd change-id louktpqk
+1 -1
+1 -1
appview/models/search.go
··· 72 72 73 73 func (o *RepoSearchOptions) HasSearchFilters() bool { 74 74 return len(o.Keywords) > 0 || len(o.Phrases) > 0 || 75 - o.Language != "" || o.Did != "" || 75 + o.Language != "" || 76 76 len(o.Topics) > 0 || len(o.NegatedTopics) > 0 || 77 77 len(o.NegatedKeywords) > 0 || len(o.NegatedPhrases) > 0 78 78 }