Skip to content

Commit 1fb9a75

Browse files
committed
Fix: increase max number of domains to 100
1 parent 209c1b3 commit 1fb9a75

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

backend/schema/definitions.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@
172172
"description": "Domain Names separated by a comma",
173173
"example": "*.jc21.com,blog.jc21.com",
174174
"type": "array",
175-
"maxItems": 30,
175+
"maxItems": 100,
176176
"uniqueItems": true,
177177
"items": {
178178
"type": "string",

frontend/js/app/nginx/certificates/form.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ module.exports = Mn.View.extend({
265265
this.ui.domain_names.selectize({
266266
delimiter: ',',
267267
persist: false,
268-
maxOptions: 30,
268+
maxOptions: 100,
269269
create: function (input) {
270270
return {
271271
value: input,

frontend/js/app/nginx/dead/form.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ module.exports = Mn.View.extend({
233233
this.ui.domain_names.selectize({
234234
delimiter: ',',
235235
persist: false,
236-
maxOptions: 30,
236+
maxOptions: 100,
237237
create: function (input) {
238238
return {
239239
value: input,

frontend/js/app/nginx/proxy/form.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ module.exports = Mn.View.extend({
271271
this.ui.domain_names.selectize({
272272
delimiter: ',',
273273
persist: false,
274-
maxOptions: 30,
274+
maxOptions: 100,
275275
create: function (input) {
276276
return {
277277
value: input,

frontend/js/app/nginx/redirection/form.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ module.exports = Mn.View.extend({
235235
this.ui.domain_names.selectize({
236236
delimiter: ',',
237237
persist: false,
238-
maxOptions: 30,
238+
maxOptions: 100,
239239
create: function (input) {
240240
return {
241241
value: input,

0 commit comments

Comments
 (0)