Skip to content

Commit 52ba2f5

Browse files
Baspagithub-actions[bot]
authored andcommitted
Fix styling
1 parent cfbed9c commit 52ba2f5

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/Fields/Repeater.php

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -100,15 +100,15 @@ public function getForm(): array
100100
Forms\Components\Toggle::make('config.reorderableWithButtons')
101101
->label(__('Reorderable with buttons'))
102102
->dehydrated()
103-
->disabled(fn(Get $get): bool => $get('config.reorderable') === false)
103+
->disabled(fn (Get $get): bool => $get('config.reorderable') === false)
104104
->inline(false),
105105
]),
106106
Forms\Components\Toggle::make('config.collapsible')
107107
->label(__('Collapsible'))
108108
->inline(false),
109109
Forms\Components\Toggle::make('config.collapsed')
110110
->label(__('Collapsed'))
111-
->visible(fn(Get $get): bool => $get('config.collapsible') === true)
111+
->visible(fn (Get $get): bool => $get('config.collapsible') === true)
112112
->inline(false),
113113
Forms\Components\Toggle::make('config.cloneable')
114114
->label(__('Cloneable'))
@@ -129,9 +129,9 @@ public function getForm(): array
129129
->maxDepth(0)
130130
->indentable(false)
131131
->reorderable(true)
132-
->addable(fn(string $operation) => $operation !== 'create')
133-
->disabled(fn(string $operation) => $operation === 'create')
134-
->hint(fn(string $operation) => $operation === 'create' ? __('Fields can be added once the field is created.') : '')
132+
->addable(fn (string $operation) => $operation !== 'create')
133+
->disabled(fn (string $operation) => $operation === 'create')
134+
->hint(fn (string $operation) => $operation === 'create' ? __('Fields can be added once the field is created.') : '')
135135
->hintColor('primary')
136136
->form([
137137
Section::make('Field')
@@ -187,10 +187,10 @@ function () {
187187
])->columnSpanFull(),
188188
Section::make('Configuration')
189189
->columns(3)
190-
->schema(fn(Get $get) => $this->getFieldTypeFormSchema(
190+
->schema(fn (Get $get) => $this->getFieldTypeFormSchema(
191191
$get('field_type')
192192
))
193-
->visible(fn(Get $get) => filled($get('field_type'))),
193+
->visible(fn (Get $get) => filled($get('field_type'))),
194194
]),
195195
])->columns(2),
196196
])->columnSpanFull(),

0 commit comments

Comments
 (0)