Delete button doesn't work on any table
I'm working on switching from Nova to filament but I'm having issues with tables. Clicking delete does not do anything but it works fine if I go to the edit view then click delete. I've tried it on 3 different resources now. I set my delete and deleteany policies to always return true thinking that may be the issue but that didn't help.
php v8.3.9
filament v3.2
Any ideas are appreciated π
4 Replies
Make sure the DeleteAction is the correct one from the Tables namespace. Other than that weβd need to see some code to be able to help more.
I'm using
Tables\Actions\DeleteAction
Let me know what you need to see. The button is pretty much just an asset on the page and does nothing right now, the modal doesn't even show up when it is clicked.Solution
Do you have any console errors?
Ah yeah mixed content was blocking it. Added forced scheme and that fixed it. Thanks for the help