1
0
mirror of https://github.com/muety/wakapi.git synced 2023-08-10 21:12:56 +03:00

fix: view details of unknown projects on dashboard

This commit is contained in:
Ferdinand Mütsch
2023-04-03 20:30:23 +02:00
parent ca3320b174
commit 083fbf8633
9 changed files with 1269 additions and 1258 deletions

View File

@ -25,7 +25,7 @@ func (f OrFilter) Exists() bool {
func (f OrFilter) MatchAny(search string) bool {
for _, s := range f {
if s == search {
if s == search || (s == "-" && search == "") {
return true
}
}