Skip to content

Commit

Permalink
Fix #20
Browse files Browse the repository at this point in the history
  • Loading branch information
ttempleton committed Oct 12, 2023
1 parent b3cb44b commit b7bb1de
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## Unreleased

### Fixed
- Fixed a bug where changes to a field's "Use this field's values as search keywords" setting weren't being saved

## 2.0.5 - 2023-08-19

### Fixed
Expand Down
1 change: 1 addition & 0 deletions src/controllers/QuickFieldController.php
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ public function actionSaveField(): Response
'groupId' => $request->getRequiredBodyParam('qf.group'),
'name' => $request->getBodyParam('qf.name'),
'handle' => $request->getBodyParam('qf.handle'),
'searchable' => (bool)$request->getBodyParam('qf.searchable', true),
'instructions' => $request->getBodyParam('qf.instructions'),
'translationMethod' => $request->getBodyParam('qf.translationMethod'),
'translationKeyFormat' => $request->getBodyParam('qf.translationKeyFormat'),
Expand Down

0 comments on commit b7bb1de

Please sign in to comment.