Can't seem to globally change the AttachAction modal width?
I have a service provider where I'm configuring defaults for many components. One component I'm trying to configure is the
Filament\Tables\Actions\AttachAction
modalWidth
.
I'm doing the following:
This does not seem to be working though. Any ideas why? It seems both the AttachAction
and the AssociateAction
are setting the modal width in their setUp
method and I thought I could override this in the configureUsing
should I not be able to?Solution:Jump to solution
Hmm, after looking at the
configureUsing
method, it appears there is an isImportant
parameter that I can set to true which solves my issue.1 Reply
Solution
Hmm, after looking at the
configureUsing
method, it appears there is an isImportant
parameter that I can set to true which solves my issue.