- 🇩🇰Denmark uv516 Denmark
The issue is back in Drupal 10.3.2:
Call to a member function settingsForm() on null in Drupal\field_group\Form\FieldGroupAddForm->buildConfigurationForm() (line 241 of modules/contrib/field_group/src/Form/FieldGroupAddForm.php).
In function buildConfigurationForm $form_state->getValue('group_formatter') and ->getValue('label') is wrong.
See this:$plugin = $manager->getInstance([ // 'format_type' => $form_state->getValue('group_formatter'), 'format_type' => $form_state->getValue('add')['group_formatter'], 'configuration' => [ // 'label' => $form_state->getValue('label'), 'label' => $form_state->getValue('new_group_wrapper')['label'], ], 'group' => $group, ]);
But it is not enough. A now group is not created on the form. (I have tried different group types)