Action modal Width

Hi all !
I try to set an Action modal width through modalWith but without success. The following code gives the attached picture. Don't guess why...
Action::make('Date') ->action(function ($data) { $this->redirect(route('filament.pages.time-recorder',['date' => $data['date_select']])); }) ->form([ Forms\Components\DatePicker::make('date_select') ->maxWidth('md') ->default($this->currentDay), ]) ->modalWidth('md'),
image.png
Was this page helpful?