FilamentF
Filament9mo ago
lmtc

KeyValue not saving new order

Hopefully someone has an idea where I'm going wrong - I have this inside a repeater:
KeyValue::make('options.select_options')
->label('Select Options')
    ->columnSpan('full')
    ->reorderable()
    ->keyLabel('Stored Value')
    ->valueLabel('Display Value')
    ->addActionLabel('Add option')
    ->visible(fn($get) => $get('type') === 'select_field'),


but when I save it reverts to the old order?
Was this page helpful?