Why the autofocus doesnt work on modals?

Why the autofocus doesnt work on modals?

I open up the modal, but the text input is not focused, should be focused automatically, or i am wrong?
if im wrong, how would be the workaround to achieve to be focused when the modal opens up?

Forms\Components\Select::make('genre')
    ->relationship(name: 'genre', titleAttribute: 'name')
    ->createOptionForm([
        Forms\Components\TextInput::make('name')
            ->required()
            ->unique(Genre::class, 'name')
            ->autofocus()
        ,
    ])
,
Was this page helpful?