EasyAdminBundle
EasyAdminBundle copied to clipboard
asset mapper & turbo-frame
Hi, Does EasyAdmin fully support turbo-frame ? the frame print content but doesn't seem to isolate whether there's an action inside (link, form action), all page is reloaded.
// src/Controller/Admin/DashboardController.php
public function configureAssets(): Assets
{
$assets = parent::configureAssets();
$assets->addAssetMapperEntry('app');
return $assets;
}
// templates/admin/dashboard.html.twig
{% extends '@EasyAdmin/layout.html.twig' %}
{% block main %}
...