mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 08:30:25 +08:00 
			
		
		
		
	fix #14185 Signed-off-by: a1012112796 <1012112796@qq.com> Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
This commit is contained in:
		@@ -31,7 +31,7 @@
 | 
				
			|||||||
				</div>
 | 
									</div>
 | 
				
			||||||
			</div>
 | 
								</div>
 | 
				
			||||||
		</div>
 | 
							</div>
 | 
				
			||||||
		<div id="branch-list" class="scrolling menu reference-list-menu">
 | 
							<div id="branch-list" class="scrolling menu reference-list-menu {{if not .Issue}}new-issue{{end}}">
 | 
				
			||||||
			{{if .Issue.Ref}}
 | 
								{{if .Issue.Ref}}
 | 
				
			||||||
				<div class="item text small" data-id="" data-id-selector="#ref_selector"><strong><a href="#">{{$.i18n.Tr "repo.clear_ref"}}</a></strong></div>
 | 
									<div class="item text small" data-id="" data-id-selector="#ref_selector"><strong><a href="#">{{$.i18n.Tr "repo.clear_ref"}}</a></strong></div>
 | 
				
			||||||
			{{end}}	
 | 
								{{end}}	
 | 
				
			||||||
@@ -39,7 +39,7 @@
 | 
				
			|||||||
				<div class="item" data-id="refs/heads/{{.}}" data-name="{{.}}" data-id-selector="#ref_selector">{{.}}</div>
 | 
									<div class="item" data-id="refs/heads/{{.}}" data-name="{{.}}" data-id-selector="#ref_selector">{{.}}</div>
 | 
				
			||||||
			{{end}}
 | 
								{{end}}
 | 
				
			||||||
		</div>
 | 
							</div>
 | 
				
			||||||
		<div id="tag-list" class="scrolling menu reference-list-menu" style="display: none">
 | 
							<div id="tag-list" class="scrolling menu reference-list-menu {{if not .Issue}}new-issue{{end}}" style="display: none">
 | 
				
			||||||
			{{if .Issue.Ref}}
 | 
								{{if .Issue.Ref}}
 | 
				
			||||||
				<div class="item text small" data-id="" data-id-selector="#ref_selector"><strong><a href="#">{{.i18n.Tr "repo.clear_ref"}}</a></strong></div>
 | 
									<div class="item text small" data-id="" data-id-selector="#ref_selector"><strong><a href="#">{{.i18n.Tr "repo.clear_ref"}}</a></strong></div>
 | 
				
			||||||
			{{end}}	
 | 
								{{end}}	
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -112,10 +112,15 @@ function initEditForm() {
 | 
				
			|||||||
function initBranchSelector() {
 | 
					function initBranchSelector() {
 | 
				
			||||||
  const $selectBranch = $('.ui.select-branch');
 | 
					  const $selectBranch = $('.ui.select-branch');
 | 
				
			||||||
  const $branchMenu = $selectBranch.find('.reference-list-menu');
 | 
					  const $branchMenu = $selectBranch.find('.reference-list-menu');
 | 
				
			||||||
 | 
					  const $isNewIssue = $branchMenu.hasClass('new-issue');
 | 
				
			||||||
  $branchMenu.find('.item:not(.no-select)').click(function () {
 | 
					  $branchMenu.find('.item:not(.no-select)').click(function () {
 | 
				
			||||||
    const selectedValue = $(this).data('id');
 | 
					    const selectedValue = $(this).data('id');
 | 
				
			||||||
    const editMode = $('#editing_mode').val();
 | 
					    const editMode = $('#editing_mode').val();
 | 
				
			||||||
    $($(this).data('id-selector')).val(selectedValue);
 | 
					    $($(this).data('id-selector')).val(selectedValue);
 | 
				
			||||||
 | 
					    if ($isNewIssue) {
 | 
				
			||||||
 | 
					      $selectBranch.find('.ui .branch-name').text($(this).data('name'));
 | 
				
			||||||
 | 
					      return;
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    if (editMode === 'true') {
 | 
					    if (editMode === 'true') {
 | 
				
			||||||
      const form = $('#update_issueref_form');
 | 
					      const form = $('#update_issueref_form');
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user