filament/filament
v3.2.96
v11.18.1
v3.5.4
8.2.15
I have the following repeater:
Repeater::make('repeater')
->collapsed()
->live()
->schema([
Forms\Components\Select::make('Non hidden select')
->translateLabel()
->searchable()
->options(['test'=>'test', 'test123'=>'test123']),
Checkbox::make('show/hide field')
->translateLabel()
->live(),
Select::make('hidden select')
->translateLabel()
->searchable()
->required()
->options(['test'=>'test', 'test123'=>'test123'])
->visible(fn (Get $get) => $get('show/hide field')),
])->reorderable()->orderColumn('order')
As you can see the repeater has two selects (one of which is hidden) and a checkbox that functions as a toggle for the hidden field. Everything works fine until the checkbox gets clicked twice, after which the selects dropdown options are bugged in the following way:
instead of the normal intended way where you can see the options:
Its the exact same for the hidden field.
I expected the select field to keep showing the items after pressing the checkbox twice.
https://github.com/ChielHoogma1/filament-select-overflow-in-repeater
No response
Pay now to fund the work behind this issue.
Get updates on progress being made.
Maintainer is rewarded once the issue is completed.
You're funding impactful open source efforts
You want to contribute to this effort
You want to get funding like this too