Skip to content

Commit

Permalink
Use the correct selector to hide the checkmark of selected labels on …
Browse files Browse the repository at this point in the history
  • Loading branch information
GiteaBot and wxiaoguang committed Mar 1, 2023
1 parent ff7057a commit 3d8412d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web_src/js/features/repo-legacy.js
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ export function initRepoCommentForm() {

$(this).parent().find('.item').each(function () {
$(this).removeClass('checked');
$(this).find('.octicon').addClass('invisible');
$(this).find('.octicon-check').addClass('invisible');
});

if (selector === 'select-reviewers-modify' || selector === 'select-assignees-modify') {
Expand Down

0 comments on commit 3d8412d

Please sign in to comment.