© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•3y ago
yagrasdemonde

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(),
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

Thanks
Filament banner
FilamentJoin
A powerful open source UI framework for Laravel • Build and ship admin panels & apps fast with Livewire
20,307Members
Resources

Similar Threads

Was this page helpful?
Recent Announcements

Similar Threads

Select component with searchable & live?
FilamentFFilament / ❓┊help
3y ago
Default value with searchable in select component
FilamentFFilament / ❓┊help
3y ago
Select Blade Component - Searchable
FilamentFFilament / ❓┊help
2y ago
CreateOptionForm in Repeater with dependent select component
FilamentFFilament / ❓┊help
3y ago