FilamentF
Filament2y ago
Jap

Modal UI Bug

I encountered this bug after updating to v3.2.22 has anyone noticed this or is it just on my end? Thanks

Tables\Actions\Action::make('Print Schedule')
                    ->hidden(fn ($record) => $record->trashed())
                    ->icon('bxs-file-pdf')
                    ->action(fn ($record, $data) => redirect()->route('print-block-schedule', ['block' => $record->id, 'academic_term' => $data['academic_term_id']]))
                    ->form([
                        Select::make('academic_term_id')
                            ->label('Academic Term')
                            ->columnSpanFull()
                            ->native(false)
                            ->searchable()
                    ]),
Solution
Solved by updating to v3.2.24.
Was this page helpful?