Use yellow if an approved review is stale (#26312)
By using a different color it's clear that the review isn't pointing to the latest commit. **Screenshots:** Not stale review: ![image](https://github.com/go-gitea/gitea/assets/1135157/2901ad69-e0d8-4041-b760-277d02dafd45) Stale review: ![image](https://github.com/go-gitea/gitea/assets/1135157/500b306e-a994-42d4-a2fd-1174774ba5ee) fixes #26306
This commit is contained in:
parent
d74c2228e3
commit
70647bd04c
|
@ -192,6 +192,9 @@ func (r *Review) LoadAttributes(ctx context.Context) (err error) {
|
||||||
func (r *Review) HTMLTypeColorName() string {
|
func (r *Review) HTMLTypeColorName() string {
|
||||||
switch r.Type {
|
switch r.Type {
|
||||||
case ReviewTypeApprove:
|
case ReviewTypeApprove:
|
||||||
|
if r.Stale {
|
||||||
|
return "yellow"
|
||||||
|
}
|
||||||
return "green"
|
return "green"
|
||||||
case ReviewTypeComment:
|
case ReviewTypeComment:
|
||||||
return "grey"
|
return "grey"
|
||||||
|
|
Loading…
Reference in New Issue