EasyAdminBundle
EasyAdminBundle copied to clipboard
Search results highlighted in all fields regardless of search range
Regardless of what is set in search field settings in crud, after search all fields containing query are highlighted which is very confusing. It should highlight only in fields that are used in search. Also, it would be nice to be able to disable this feature completely (without overriding it in css).
In presented screenshot I search only in Numer
field.
public function configureCrud(Crud $crud): Crud
{
return $crud
->setSearchFields(['number']);
}