Skip to content

Commit

Permalink
Merge pull request #12457 from snipe/fixed/regression_on_field_associ…
Browse files Browse the repository at this point in the history
…ations

Fixed regression in fieldset -> field association
  • Loading branch information
snipe committed Feb 2, 2023
2 parents bbf6e5e + 51f3857 commit f9ef49f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Http/Controllers/CustomFieldsetsController.php
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ public function destroy($id)
*/
public function associate(Request $request, $id)
{
$set = CustomField::find($id);
$set = CustomFieldset::find($id);

$this->authorize('update', $set);

Expand Down

0 comments on commit f9ef49f

Please sign in to comment.