mirror of
				https://github.com/go-gitea/gitea
				synced 2025-10-29 18:38:28 +00:00 
			
		
		
		
	Group Label Changed Comments in timeline (#13304)
* Create function to group label comments * Combine multiple label additions into one * Group removed and added labels in the same comment * Fix indentation on comments.tmpl Co-authored-by: zeripath <art27@cantab.net> Co-authored-by: zeripath <art27@cantab.net>
This commit is contained in:
		| @@ -124,7 +124,9 @@ type Comment struct { | ||||
| 	IssueID          int64  `xorm:"INDEX"` | ||||
| 	Issue            *Issue `xorm:"-"` | ||||
| 	LabelID          int64 | ||||
| 	Label            *Label `xorm:"-"` | ||||
| 	Label            *Label   `xorm:"-"` | ||||
| 	AddedLabels      []*Label `xorm:"-"` | ||||
| 	RemovedLabels    []*Label `xorm:"-"` | ||||
| 	OldProjectID     int64 | ||||
| 	ProjectID        int64 | ||||
| 	OldProject       *Project `xorm:"-"` | ||||
|   | ||||
		Reference in New Issue
	
	Block a user