Boolean edition from list is not working anymore after updating Sonata Admin Bundle to dev-master. I can't click on the field.
Here is my admin class
protected function configureListFields(ListMapper $listMapper)
{
$listMapper
->add('highlighted', 'boolean', ["editable" => true])
;
}
Here is my composer.json
"sonata-project/core-bundle": "dev-master",
"sonata-project/block-bundle" : "dev-master",
"sonata-project/exporter" : "1.3.1",
"sonata-project/jquery-bundle" : "dev-master",
"sonata-project/cache-bundle" : "dev-master",
"sonata-project/intl-bundle" : "dev-master",
"sonata-project/admin-bundle" : "dev-master",
"sonata-project/doctrine-orm-admin-bundle" : "dev-master"
My question is : Is it a bundle version problem? Is edition from list just not supported anymore by the latest version of Sonata Admin Bundle? Or am I doing it wrong?
Thanks for you help