Add tooltip to the review request checkbox (close #7227)

This commit is contained in:
Quincy Morgan
2020-12-03 13:50:56 -05:00
parent 9f6aaf2438
commit a85ac34a35
3 changed files with 7 additions and 0 deletions
+5
View File
@@ -323,6 +323,11 @@ export function uiCommit(context) {
.append('label')
.attr('for', requestReviewDomId);
if (!labelEnter.empty()) {
labelEnter
.call(uiTooltip().title(t.html('commit.request_review_info')).placement('top'));
}
labelEnter
.append('input')
.attr('type', 'checkbox')