Skip to content

Commit fc5a628

Browse files
author
John Wesely
committed
Merge branch 'main' of github.com:TappNetwork/Filament-Form-Builder
2 parents 8207d42 + be7847b commit fc5a628

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
All notable changes to `:package_name` will be documented in this file.
44

5+
## v1.21 - 2024-08-05
6+
7+
Fixes a typo in locking action visibility and adds a locked column to form resource.
8+
59
## v1.2 - 2024-08-05
610

711
### Support locking a form to prevent data integrity issues
@@ -13,4 +17,5 @@ All notable changes to `:package_name` will be documented in this file.
1317
$table->boolean('locked')->default(false);
1418
});
1519
20+
1621
```

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)