Can a suffixAction be triggered by pressing enter?

I have this form in a filament v3 Page:
public function form(Form $form): Form
{
    return $form
        ->schema([
            Components\TextInput::make('stuff')
            ->suffixAction(
                Action::make('sendStuff')
                ->icon('heroicon-m-clipboard')
                ->action(function () {
                    $response = "Action triggered!"
                })
            ),
            Components\Textarea::make('response')
            ->rows(10),
        ]);
}

I was expecting that the suffixAction will also be triggered by pressing the Enter key but is not the case. I could not find any mention to something like this in the Docs. I guess I am missing something very basic here...
Was this page helpful?