Browse Source

[ui] Change icon type for review action in action page (#11191)

* as title, do same changs on action view with #10737
* chage default icon from "invalid type" to "question" , because  "invalid type" is not a meaningfull icon type

Signed-off-by: a1012112796 <1012112796@qq.com>
for-closed-social
赵智超 4 years ago
committed by GitHub
parent
commit
d3fc9c08c8
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      modules/templates/helper.go

+ 3
- 3
modules/templates/helper.go View File

@ -564,11 +564,11 @@ func ActionIcon(opType models.ActionType) string {
case models.ActionMirrorSyncPush, models.ActionMirrorSyncCreate, models.ActionMirrorSyncDelete:
return "repo-clone"
case models.ActionApprovePullRequest:
return "eye"
return "check"
case models.ActionRejectPullRequest:
return "x"
return "request-changes"
default:
return "invalid type"
return "question"
}
}

Loading…
Cancel
Save