Skip to content

Commit

Permalink
Fix boolean attribute parsing issue (#71)
Browse files Browse the repository at this point in the history
  • Loading branch information
milewski committed Feb 9, 2022
1 parent 0b431cc commit baedc96
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion dist/js/field.js

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions resources/js/components/FormField.vue
Original file line number Diff line number Diff line change
Expand Up @@ -235,11 +235,11 @@
attributeValue = parseInt(attributeValue)
conditionValue = parseInt(conditionValue)
}
if (!isNaN(attributeValue)) {
if (!isNaN(attributeValue)) {
attributeValue = parseInt(attributeValue)
attributeValue = parseInt(attributeValue)
}
}
Expand Down

0 comments on commit baedc96

Please sign in to comment.