mirror of
				https://github.com/NginxProxyManager/nginx-proxy-manager.git
				synced 2025-10-31 15:53:33 +00:00 
			
		
		
		
	Fix: increase max number of domains to 100
This commit is contained in:
		| @@ -172,7 +172,7 @@ | ||||
|       "description": "Domain Names separated by a comma", | ||||
|       "example": "*.jc21.com,blog.jc21.com", | ||||
|       "type": "array", | ||||
|       "maxItems": 30, | ||||
|       "maxItems": 100, | ||||
|       "uniqueItems": true, | ||||
|       "items": { | ||||
|         "type": "string", | ||||
|   | ||||
| @@ -265,7 +265,7 @@ module.exports = Mn.View.extend({ | ||||
|         this.ui.domain_names.selectize({ | ||||
|             delimiter:    ',', | ||||
|             persist:      false, | ||||
|             maxOptions:   30, | ||||
|             maxOptions:   100, | ||||
|             create:       function (input) { | ||||
|                 return { | ||||
|                     value: input, | ||||
|   | ||||
| @@ -233,7 +233,7 @@ module.exports = Mn.View.extend({ | ||||
|         this.ui.domain_names.selectize({ | ||||
|             delimiter:    ',', | ||||
|             persist:      false, | ||||
|             maxOptions:   30, | ||||
|             maxOptions:   100, | ||||
|             create:       function (input) { | ||||
|                 return { | ||||
|                     value: input, | ||||
|   | ||||
| @@ -271,7 +271,7 @@ module.exports = Mn.View.extend({ | ||||
|         this.ui.domain_names.selectize({ | ||||
|             delimiter:    ',', | ||||
|             persist:      false, | ||||
|             maxOptions:   30, | ||||
|             maxOptions:   100, | ||||
|             create:       function (input) { | ||||
|                 return { | ||||
|                     value: input, | ||||
|   | ||||
| @@ -235,7 +235,7 @@ module.exports = Mn.View.extend({ | ||||
|         this.ui.domain_names.selectize({ | ||||
|             delimiter:    ',', | ||||
|             persist:      false, | ||||
|             maxOptions:   30, | ||||
|             maxOptions:   100, | ||||
|             create:       function (input) { | ||||
|                 return { | ||||
|                     value: input, | ||||
|   | ||||
		Reference in New Issue
	
	Block a user