diff --git a/core/modules/comment/src/Plugin/Field/FieldType/CommentItem.php b/core/modules/comment/src/Plugin/Field/FieldType/CommentItem.php index 3fd0cda57c9c47969fdcf10f9936e960f1195fa6..d6bbdd34538d65b5b7b471f5ab175ef98c281892 100644 --- a/core/modules/comment/src/Plugin/Field/FieldType/CommentItem.php +++ b/core/modules/comment/src/Plugin/Field/FieldType/CommentItem.php @@ -117,9 +117,8 @@ public function fieldSettingsForm(array $form, FormStateInterface $form_state) { '#title' => t('Comments per page'), '#default_value' => $settings['per_page'], '#required' => TRUE, - '#min' => 10, + '#min' => 1, '#max' => 1000, - '#step' => 10, ]; $element['anonymous'] = [ '#type' => 'select',