mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-29 10:57:44 +09:00 
			
		
		
		
	Fixed topic regex pattern and added search by topic links after save (#9219)
Signed-off-by: Alexey Terentyev <axifnx@gmail.com>
This commit is contained in:
		
				
					committed by
					
						 Lauris BH
						Lauris BH
					
				
			
			
				
	
			
			
			
						parent
						
							66028d58f9
						
					
				
				
					commit
					2fc3eb1d15
				
			
										
											
												File diff suppressed because one or more lines are too long
											
										
									
								
							
										
											
												File diff suppressed because one or more lines are too long
											
										
									
								
							| @@ -3150,7 +3150,7 @@ function initTopicbar() { | |||||||
|  |  | ||||||
|           const last = viewDiv.children('a').last(); |           const last = viewDiv.children('a').last(); | ||||||
|           for (let i = 0; i < topicArray.length; i++) { |           for (let i = 0; i < topicArray.length; i++) { | ||||||
|             $(`<div class="ui small label topic" style="cursor:pointer;">${topicArray[i]}</div>`).insertBefore(last); |             $(`<a class="ui repo-topic small label topic" href="${suburl}/explore/repos?q=${topicArray[i]}&topic=1">${topicArray[i]}</a>`).insertBefore(last); | ||||||
|           } |           } | ||||||
|         } |         } | ||||||
|         editDiv.css('display', 'none'); |         editDiv.css('display', 'none'); | ||||||
| @@ -3277,7 +3277,7 @@ function initTopicbar() { | |||||||
|         rules: [ |         rules: [ | ||||||
|           { |           { | ||||||
|             type: 'validateTopic', |             type: 'validateTopic', | ||||||
|             value: /^[a-z0-9][a-z0-9-]{1,35}$/, |             value: /^[a-z0-9][a-z0-9-]{0,35}$/, | ||||||
|             prompt: topicPrompts.formatPrompt |             prompt: topicPrompts.formatPrompt | ||||||
|           }, |           }, | ||||||
|           { |           { | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user