Actions on custom Dashboard

Hi, I have a custom Dashboard page, with 4 Table Widgets, I need to add an Action button which dispatches an event.
I've added the followind Action in the getHeaderActions function, but everytime i click on the button 3 of the 4 widgets goes away (only the latest on the array remains). The action takes place correctly, but I need my widgets not to hide. Someone had the same problem?
Action::make('prova')
  ->action(function () {
    dump("prova");
  })
Solution
v3.0.34 seems to have addressed the problem.
Was this page helpful?