mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 00:20:25 +08:00 
			
		
		
		
	Use the correct selector to hide the checkmark of selected labels on clear (#23224)
Regression of #10107 (https://github.com/go-gitea/gitea/pull/10107/files#diff-a15e36f2f9c13339f7fdd38bc2887db2ff2945cb8434464318ab9105fcc846bdR460) Fix #22222 Before: the "clear" action couldn't remove these check marks.  After: the "clear" action can remove these check marks. 
This commit is contained in:
		@@ -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') {
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user