->autofocus doesnt work with modals

public function table(Table $table): Table
{
    return $table
        ->actions([
            EditAction::make('edit')
                ->form([
                    TextInput::make('name')
                        ->required()
                        ->maxLength(255)
                        ->autofocus() // this wont work


so the question is, in what cases the autofocus works?
Was this page helpful?