fix: allow re-requesting uncounted review approvals (#38988)

This commit is contained in:
Harsh Sharma
2026-09-08 15:59:06 +00:00
committed by GitHub
parent c9193adb68
commit d93bd06d0c
9 changed files with 160 additions and 33 deletions
+1 -1
View File
@@ -223,7 +223,7 @@ func (r *Review) HTMLTypeColorClass() string {
case ReviewTypeReject:
return "tw-text-red"
case ReviewTypeRequest:
return "tw-text-yellow"
return util.Iif(r.Official, "tw-text-yellow", "tw-text-text-light")
}
return "tw-text-text-light"
}