Skip to content

Commit 1759ea4

Browse files
committed
fine tune
1 parent 9ccb69c commit 1759ea4

File tree

3 files changed

+0
-4
lines changed

3 files changed

+0
-4
lines changed

options/locale/locale_en-US.ini

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1466,7 +1466,6 @@ issues.new.no_reviewers = No Reviewers
14661466
issues.new.blocked_user = Cannot create issue because you are blocked by the repository owner.
14671467
issues.edit.already_changed = Unable to save changes to the issue. It appears the content has already been changed by another user. Please refresh the page and try editing again to avoid overwriting their changes
14681468
issues.edit.blocked_user = Cannot edit content because you are blocked by the poster or repository owner.
1469-
issues.new.clear_reviewers = Clear reviewers
14701469
issues.choose.get_started = Get Started
14711470
issues.choose.open_external_link = Open
14721471
issues.choose.blank = Default

routers/api/v1/repo/pull.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -561,7 +561,6 @@ func CreatePullRequest(ctx *context.APIContext) {
561561
PullRequest: pr,
562562
AssigneeIDs: assigneeIDs,
563563
}
564-
565564
prOpts.Reviewers, prOpts.TeamReviewers = parseReviewersByNames(ctx, form.Reviewers, form.TeamReviewers)
566565
if ctx.Written() {
567566
return

web_src/js/features/repo-issue-sidebar.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -205,8 +205,6 @@ function selectItem(select_id, input_id) {
205205
icon = svg('octicon-project', 18, 'tw-mr-2');
206206
} else if (input_id === '#assignee_id') {
207207
icon = `<img class="ui avatar image tw-mr-2" alt="avatar" src=${$(this).data('avatar')}>`;
208-
} else if (input_id === '#reviewer_id') {
209-
icon = `<img class="ui avatar image tw-mr-2" alt="avatar" src=${$(this).data('avatar')}>`;
210208
}
211209

212210
$list.find('.selected').html(`

0 commit comments

Comments
 (0)