Make switch more clear (#5119)

release/v1.7
Oleg Kovalov 6 years ago committed by Lunny Xiao
parent 8db3bdc683
commit fef0410b92

@ -38,12 +38,11 @@ func (rt ReviewType) Icon() string {
return "eye" return "eye"
case ReviewTypeReject: case ReviewTypeReject:
return "x" return "x"
case ReviewTypeComment, ReviewTypeUnknown:
return "comment"
default: default:
case ReviewTypeComment:
case ReviewTypeUnknown:
return "comment" return "comment"
} }
return "comment"
} }
// Review represents collection of code comments giving feedback for a PR // Review represents collection of code comments giving feedback for a PR

Loading…
Cancel
Save