mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-31 21:28:11 +09:00 
			
		
		
		
	Show dropdown with all statuses for commit (#13977)
* Show dropdown with all statuses for commit * Use popups * Remove unnecessary change * Style popup * Use divided list * As per @silverwind * Refactor GetLastCommitStatus * Missing dropdown on repo home and commit page * Fix tests * Make status icon be a part of a link on PR list * Fix missing translation call * Indent fix Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com> Co-authored-by: techknowlogick <techknowlogick@gitea.io>
This commit is contained in:
		
				
					committed by
					
						 GitHub
						GitHub
					
				
			
			
				
	
			
			
			
						parent
						
							029836c34c
						
					
				
				
					commit
					f3c4baa84b
				
			| @@ -640,8 +640,8 @@ func GetCommitMessages(pr *models.PullRequest) string { | ||||
| 	return stringBuilder.String() | ||||
| } | ||||
|  | ||||
| // GetLastCommitStatus returns the last commit status for this pull request. | ||||
| func GetLastCommitStatus(pr *models.PullRequest) (status *models.CommitStatus, err error) { | ||||
| // GetLastCommitStatus returns list of commit statuses for latest commit on this pull request. | ||||
| func GetLastCommitStatus(pr *models.PullRequest) (status []*models.CommitStatus, err error) { | ||||
| 	if err = pr.LoadBaseRepo(); err != nil { | ||||
| 		return nil, err | ||||
| 	} | ||||
| @@ -666,7 +666,7 @@ func GetLastCommitStatus(pr *models.PullRequest) (status *models.CommitStatus, e | ||||
| 	if err != nil { | ||||
| 		return nil, err | ||||
| 	} | ||||
| 	return models.CalcCommitStatus(statusList), nil | ||||
| 	return statusList, nil | ||||
| } | ||||
|  | ||||
| // IsHeadEqualWithBranch returns if the commits of branchName are available in pull request head | ||||
|   | ||||
		Reference in New Issue
	
	Block a user