mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-31 21:28:11 +09:00 
			
		
		
		
	Fix repository issues pagination bug when there are more than one label filter (#9512)
This commit is contained in:
		| @@ -269,6 +269,14 @@ func NewFuncMap() []template.FuncMap { | ||||
| 				return "" | ||||
| 			} | ||||
| 		}, | ||||
| 		"contain": func(s []int64, id int64) bool { | ||||
| 			for i := 0; i < len(s); i++ { | ||||
| 				if s[i] == id { | ||||
| 					return true | ||||
| 				} | ||||
| 			} | ||||
| 			return false | ||||
| 		}, | ||||
| 	}} | ||||
| } | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user