Fix: increase max number of domains to 100

This commit is contained in:
David Indra 2024-02-23 15:33:38 +01:00
parent 209c1b3334
commit 1fb9a75a33
5 changed files with 5 additions and 5 deletions

View File

@ -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",

View File

@ -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,

View File

@ -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,

View File

@ -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,

View File

@ -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,