Modal Issue - No Console Errors

Hey All - I'm wondering if anyone has ever dealt with an issue like in the attached video? Basically the screen goes gray like it thinks the modal has been opened, but nothing appears on the page. Here is the code for the Action:
Action::make('customRestaurantSelectionDelete')
->label('')
->disabled(function () {
return $this->submitted && !$this->revisionMode;
})
->color('danger')
->button(false)
->icon('heroicon-o-trash')
->requiresConfirmation()
->modalHeading('Confirm Delete')
->action(function ($state) {
$selectedItem = Selection::find($state['id']);

if ($this->trip->version_number > 1) {
DeletedSelection::create([
'selection_id' => $selectedItem->id,
'version_number' => $this->trip->version_number,
]);
}

$selectedItem->delete();

$this->order = Order::find($this->order->id);

$this->fillOrderForm();
})
Action::make('customRestaurantSelectionDelete')
->label('')
->disabled(function () {
return $this->submitted && !$this->revisionMode;
})
->color('danger')
->button(false)
->icon('heroicon-o-trash')
->requiresConfirmation()
->modalHeading('Confirm Delete')
->action(function ($state) {
$selectedItem = Selection::find($state['id']);

if ($this->trip->version_number > 1) {
DeletedSelection::create([
'selection_id' => $selectedItem->id,
'version_number' => $this->trip->version_number,
]);
}

$selectedItem->delete();

$this->order = Order::find($this->order->id);

$this->fillOrderForm();
})
5 Replies
bwurtz999
bwurtz999OP2mo ago
I show the first modal opening to demonstrate that other modals on the page open without issue
Mohamed Ayaou
Mohamed Ayaou2mo ago
I face this sometimes on local with no reason and I fix it always with a server restart, clearing caches and optimization
bwurtz999
bwurtz999OP2mo ago
Thank you for the reply. I've tried that but it didn't help. I'm also experiencing this in staging/production. Very strange
LeandroFerreira
LeandroFerreira2mo ago
maybe you could provide a minimal repo on github reproducing this issue
Mohamed Ayaou
Mohamed Ayaou2mo ago
I didn't found a way to reproduce it, it just happens sometimes with no reason (for me only on local) but as I said I just clear everything an it disappears.

Did you find this page helpful?