Skip to content

Commit 55a6f70

Browse files
johnweselygithub-actions[bot]
authored andcommitted
Fix styling
1 parent bc3ffe6 commit 55a6f70

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/Filament/Resources/FilamentFormResource/RelationManagers/FilamentFormFieldsRelationManager.php

+5-5
Original file line numberDiff line numberDiff line change
@@ -84,14 +84,14 @@ public function table(Table $table): Table
8484
->headerActions([
8585
Tables\Actions\CreateAction::make()
8686
->visible(function () use ($form) {
87-
return !$form->locked;
87+
return ! $form->locked;
8888
})
8989
->label('Create Field'),
9090
Action::make('lock_fields')
9191
->requiresConfirmation()
9292
->modalHeading('Lock Form Fields. Doing this will lock the forms fields and new fields will no longer be able to be changed or edited')
9393
->visible(function () use ($form) {
94-
return !$form->locked;
94+
return ! $form->locked;
9595
})
9696
->action(function () use ($form) {
9797
$form->update([
@@ -113,18 +113,18 @@ public function table(Table $table): Table
113113
->actions([
114114
Tables\Actions\EditAction::make()
115115
->visible(function () use ($form) {
116-
return !$form->locked;
116+
return ! $form->locked;
117117
}),
118118
Tables\Actions\DeleteAction::make()
119119
->visible(function () use ($form) {
120-
return !$form->locked;
120+
return ! $form->locked;
121121
}),
122122
])
123123
->bulkActions([
124124
Tables\Actions\BulkActionGroup::make([
125125
Tables\Actions\DeleteBulkAction::make()
126126
->visible(function () use ($form) {
127-
return !$form->locked;
127+
return ! $form->locked;
128128
}),
129129
]),
130130
]);

0 commit comments

Comments
 (0)