diff --git a/api/app/Http/Requests/UserFormRequest.php b/api/app/Http/Requests/UserFormRequest.php index 9596e0924..bf75ca7d9 100644 --- a/api/app/Http/Requests/UserFormRequest.php +++ b/api/app/Http/Requests/UserFormRequest.php @@ -91,7 +91,7 @@ public function rules() // Text field 'properties.*.multi_lines' => 'boolean|nullable', - 'properties.*.max_char_limit' => 'integer|nullable|min:1|max:2000', + 'properties.*.max_char_limit' => 'integer|nullable|min:1', 'properties.*.show_char_limit ' => 'boolean|nullable', 'properties.*.secret_input' => 'boolean|nullable', @@ -134,8 +134,7 @@ public function messages() return [ 'properties.*.name.required' => 'The form block number :position is missing a name.', 'properties.*.type.required' => 'The form block number :position is missing a type.', - 'properties.*.max_char_limit.min' => 'The form block number :position max character limit must be at least 1 OR Empty', - 'properties.*.max_char_limit.max' => 'The form block number :position max character limit may not be greater than 2000.', + 'properties.*.max_char_limit.min' => 'The form block number :position max character limit must be at least 1 OR Empty' ]; } } diff --git a/client/components/forms/CheckboxInput.vue b/client/components/forms/CheckboxInput.vue index c18df4b34..9bbd60a4e 100644 --- a/client/components/forms/CheckboxInput.vue +++ b/client/components/forms/CheckboxInput.vue @@ -5,16 +5,16 @@
- -
+ +