EasyAdminBundle icon indicating copy to clipboard operation
EasyAdminBundle copied to clipboard

asset mapper & turbo-frame

Open lguigo22 opened this issue 9 months ago • 0 comments

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 %}
...

lguigo22 avatar May 23 '25 14:05 lguigo22