Select component with searchable() inside in Repeater component with orderable()
Hello, in my project and in filament demo, when I use Select component with searchable() method in Repeater component with orderable() method I have screen bug in Safari 16.4 (macOS 13.3.1) during sorting repeater item.
If I remove searchable, no problem!
Forms\Components\Repeater::make('items')
->relationship()
->schema([
Forms\Components\Select::make('dish_id')
->label('Dish')
->options(Dish::pluck('name', 'id')->toArray())
->required()
->searchable()
->preload()
->lazy(),
])
->orderable('sort')
->collapsible()
->required(),
Also if I collapse repeater items, no problem
See video below
Thanks0 Replies