prefix() not working for a Select form field?

I'm trying to add a prefix to a select form field as per:-
https://filamentphp.com/docs/3.x/forms/fields/select#adding-affix-text-aside-the-field

Suffix shows up fine but not the prefix...

My code:-

Forms\Components\Select::make( 'dollars' ) ->prefix('US$') ->suffix('per day') ->options([ '1' => '50', '2' => '100', '3' => '200', '4' => '500', ]),
Output is as per the attached image... any ideas anyone?
Screenshot_2023-08-31_at_17.16.48.png
Was this page helpful?