mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-31 02:46:04 +01:00 
			
		
		
		
	not show ref-in-new-issue pop when issue was disabled (#15761)
				
					
				
			fix #15718 Signed-off-by: a1012112796 <1012112796@qq.com>
This commit is contained in:
		| @@ -111,6 +111,7 @@ | ||||
| 						{{end}} | ||||
| 					</tbody> | ||||
| 				</table> | ||||
| 					{{if $.Permission.CanRead $.UnitTypeIssues}} | ||||
| 						<div class="code-view-menu-list ui fluid popup transition hidden"> | ||||
| 							<div class="ui column relaxed equal height"> | ||||
| 								<div class="column"> | ||||
| @@ -122,6 +123,7 @@ | ||||
| 						</div> | ||||
| 					{{end}} | ||||
| 				{{end}} | ||||
| 			{{end}} | ||||
| 		</div> | ||||
| 	</div> | ||||
| </div> | ||||
|   | ||||
| @@ -2208,6 +2208,10 @@ function searchRepositories() { | ||||
| } | ||||
|  | ||||
| function showCodeViewMenu() { | ||||
|   if ($('.code-view-menu-list').length === 0) { | ||||
|     return; | ||||
|   } | ||||
|  | ||||
|   // Get clicked tr | ||||
|   const $code_tr = $('.code-view td.lines-code.active').parent(); | ||||
|  | ||||
| @@ -2873,6 +2877,11 @@ function selectRange($list, $select, $from) { | ||||
|  | ||||
|       // add hashchange to permalink | ||||
|       const $issue = $('a.ref-in-new-issue'); | ||||
|  | ||||
|       if ($issue.length === 0) { | ||||
|         return; | ||||
|       } | ||||
|  | ||||
|       const matched = $issue.attr('href').match(/%23L\d+$|%23L\d+-L\d+$/); | ||||
|       if (matched) { | ||||
|         $issue.attr('href', $issue.attr('href').replace($issue.attr('href').substr(matched.index), `%23L${a}-L${b}`)); | ||||
| @@ -2888,6 +2897,11 @@ function selectRange($list, $select, $from) { | ||||
|  | ||||
|   // add hashchange to permalink | ||||
|   const $issue = $('a.ref-in-new-issue'); | ||||
|  | ||||
|   if ($issue.length === 0) { | ||||
|     return; | ||||
|   } | ||||
|  | ||||
|   const matched = $issue.attr('href').match(/%23L\d+$|%23L\d+-L\d+$/); | ||||
|   if (matched) { | ||||
|     $issue.attr('href', $issue.attr('href').replace($issue.attr('href').substr(matched.index), `%23${$select.attr('rel')}`)); | ||||
|   | ||||
		Reference in New Issue
	
	Block a user