Select box is flickering when loading/refreshing the page
The select box is flickering just like in the video. How to fix it?
3 Replies
@Leandro Ferreira all my select is made using this code
Select::make('transport_id')
->label('Transport')
->relationship('transport', 'description')
->createOptionForm([
TextInput::make('description')
->required()
])
->options(Transport::all()->pluck('description', 'id')->toArray())
->searchable()
because it is loading
try here https://demo.filamentphp.com/
Okay so I thought it's not normal, I find this weird in v3 since its as if seamless in v2. It will be better with updates I think. Thanks