Skip to content

Commit

Permalink
updating form fix
Browse files Browse the repository at this point in the history
  • Loading branch information
iruzevic committed Feb 14, 2023
1 parent b96f8e1 commit 374964f
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.

This projects adheres to [Semantic Versioning](https://semver.org/) and [Keep a CHANGELOG](https://keepachangelog.com/).

## [2.3.3]

### Fixed
- Workable boolean sending value for empty state bugfix

## [2.3.2]

### Fixed
Expand Down Expand Up @@ -170,6 +175,7 @@ This projects adheres to [Semantic Versioning](https://semver.org/) and [Keep a

- Initial production release.

[2.3.3]: https://github.com/infinum/eightshift-forms/compare/2.3.2...2.3.3
[2.3.2]: https://github.com/infinum/eightshift-forms/compare/2.3.1...2.3.2
[2.3.1]: https://github.com/infinum/eightshift-forms/compare/2.3.0...2.3.1
[2.3.0]: https://github.com/infinum/eightshift-forms/compare/2.2.0...2.3.0
Expand Down
2 changes: 1 addition & 1 deletion eightshift-forms.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* Description: Eightshift form builder plugin.
* Author: Team Eightshift
* Author URI: https://eightshift.com/
* Version: 2.3.2
* Version: 2.3.3
* Text Domain: eightshift-forms
*
* @package EightshiftForms
Expand Down
2 changes: 1 addition & 1 deletion src/Integrations/Workable/WorkableClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ private function prepareParams(array $params): array
case 'boolean':
$answers[] = [
'question_key' => $key,
'checked' => (bool) $value,
'checked' => filter_var($value, FILTER_VALIDATE_BOOLEAN),
];
break;
case 'multiple_choice':
Expand Down

0 comments on commit 374964f

Please sign in to comment.