From 4bd0e726f6ef6fae25652d064e6b47ba0f79e9f3 Mon Sep 17 00:00:00 2001 From: Tim <51753505+tpatartmajeur@users.noreply.github.com> Date: Tue, 9 Jan 2024 17:53:09 +0100 Subject: [PATCH] Fix typo --- src/Field/Configurator/AssociationConfigurator.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Field/Configurator/AssociationConfigurator.php b/src/Field/Configurator/AssociationConfigurator.php index d18e447de9..ed3a204271 100644 --- a/src/Field/Configurator/AssociationConfigurator.php +++ b/src/Field/Configurator/AssociationConfigurator.php @@ -92,7 +92,7 @@ public function configure(FieldDto $field, EntityDto $entityDto, AdminContext $c $field->setFormTypeOption('attr.data-ea-widget', 'ea-autocomplete'); } - $field->setFormTypeOption('attr.data-ea-autocomplete-rnder-items-as-html', true === $field->getCustomOption(AssociationField::OPTION_ESCAPE_HTML_CONTENTS) ? 'false' : 'true'); + $field->setFormTypeOption('attr.data-ea-autocomplete-render-items-as-html', true === $field->getCustomOption(AssociationField::OPTION_ESCAPE_HTML_CONTENTS) ? 'false' : 'true'); // check for embedded associations $propertyNameParts = explode('.', $propertyName);