diff --git a/src/Fields/Repeater.php b/src/Fields/Repeater.php index 592afac..996052c 100644 --- a/src/Fields/Repeater.php +++ b/src/Fields/Repeater.php @@ -126,9 +126,9 @@ public function getForm(): array ->relationship('children') ->live(debounce: 250) ->labelKey('name') - ->maxDepth(0) ->indentable(false) - ->reorderable(true) + ->moveable(true) + ->reorderable(false) ->addable(fn (string $operation) => $operation !== 'create') ->disabled(fn (string $operation) => $operation === 'create') ->hint(fn (string $operation) => $operation === 'create' ? __('Fields can be added once the field is created.') : '')