From 530c00294df5658138664e91e064a1eedfd7e823 Mon Sep 17 00:00:00 2001 From: Baspa Date: Tue, 5 Aug 2025 19:35:43 +0200 Subject: [PATCH] fix: disable indentable to prevent sorting issues --- src/Fields/Repeater.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Fields/Repeater.php b/src/Fields/Repeater.php index 7417cbf..40ac3bd 100644 --- a/src/Fields/Repeater.php +++ b/src/Fields/Repeater.php @@ -126,6 +126,8 @@ public function getForm(): array ->live(debounce: 250) ->labelKey('name') ->maxDepth(0) + ->indentable(false) + ->reorderable(true) ->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.') : '')