Skip to content

Commit

Permalink
Bugfix: misplaced checkboxes due to changes in ffe-forms
Browse files Browse the repository at this point in the history
Solved by upgrading ffe-checkbox-react.
  • Loading branch information
kwltrs committed Dec 22, 2016
1 parent 4ffdebd commit de03dcd
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

# v4.0.1
* Fix misplaced checkboxes in AccountSelectorMulti.

# v4.0.0
* Revert setTimeout on componentWillMount made in v3.0.4 causing unexpected behaviour
* Expose reset method in AccountSelector
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nfe-account-selector-react",
"version": "4.0.0",
"version": "4.0.1",
"main": "lib/account-selector.js",
"scripts": {
"build": "babel -d lib/. --ignore=*.test.js src/.",
Expand Down Expand Up @@ -73,7 +73,7 @@
},
"dependencies": {
"classnames": "^2.2.5",
"ffe-checkbox-react": "^2.2.1",
"ffe-checkbox-react": "^4.1.0",
"ffe-icons-react": "0.4.2",
"lodash.isequal": "^4.4.0",
"nfe-amount-formatter": "^2.0.1",
Expand Down
1 change: 1 addition & 0 deletions src/suggestion/account-row-multi.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ const AccountRowMulti = ({account, locale, selected}) => {
<Checkbox
checked={ selected }
name="my-checkbox-label"
inline={ false }
isTabbable={ false }
onChange={onCheckboxChange}
/>
Expand Down

0 comments on commit de03dcd

Please sign in to comment.