Make switch more clear (#5119)
This commit is contained in:
parent
8db3bdc683
commit
fef0410b92
1 changed files with 2 additions and 3 deletions
|
@ -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…
Reference in a new issue