mirror of
				https://github.com/go-gitea/gitea
				synced 2025-10-31 03:18:24 +00:00 
			
		
		
		
	Fix the topic validation rule and suport dots (#26286)
1. Allow leading and trailing spaces by user input, these spaces have already been trimmed at backend 2. Allow using dots in the topic
This commit is contained in:
		| @@ -166,7 +166,7 @@ export function initRepoTopicBar() { | ||||
|         rules: [ | ||||
|           { | ||||
|             type: 'validateTopic', | ||||
|             value: /^[a-z0-9][a-z0-9-]{0,35}$/, | ||||
|             value: /^\s*[a-z0-9][-.a-z0-9]{0,35}\s*$/, | ||||
|             prompt: topicPrompts.formatPrompt | ||||
|           }, | ||||
|           { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user