diff --git a/Admin/AbstractMenuNodeAdmin.php b/Admin/AbstractMenuNodeAdmin.php index 15ae3a61..cce51ee4 100644 --- a/Admin/AbstractMenuNodeAdmin.php +++ b/Admin/AbstractMenuNodeAdmin.php @@ -102,11 +102,11 @@ protected function configureFormFields(FormMapper $formMapper) protected function configureShowFields(ShowMapper $showMapper) { $showMapper - ->add('id', 'text') - ->add('name', 'text') - ->add('label', 'text') - ->add('uri', 'text') - ->add('content', 'text') + ->add('id') + ->add('name') + ->add('label') + ->add('uri') + ->add('content', null, array('associated_property' => 'title')) ; }