Skip to content
Snippets Groups Projects
Commit 8a117961 authored by AdamPS's avatar AdamPS
Browse files

Must initialise $form to avoid error "Undefined index: field_XXX in...

Must initialise $form to avoid error "Undefined index: field_XXX in Drupal\field_ui\Form\EntityDisplayFormBase->copyFormValuesToEntity()"
parent b366a409
Branches
Tags 8.x-1.0-alpha5
No related merge requests found
......@@ -46,6 +46,7 @@ class TitleFormatter extends BasicStringFormatter {
* {@inheritdoc}
*/
public function settingsForm(array $form, FormStateInterface $form_state) {
$form = parent::settingsForm($form, $form_state);
$heading_options = [
'span' => 'span',
'div' => 'div',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment