Skip to content
This repository has been archived by the owner on Feb 16, 2021. It is now read-only.

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
gcanti committed Mar 2, 2017
1 parent 6614ffd commit 2f9e28c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@
**Note**: Gaps between patch versions are faulty/broken releases.
**Note**: A feature tagged as Experimental is in a high state of flux, you're at risk of it changing without notice.

## v0.9.13

- **Bug Fix**
- revert last commit

## v0.9.12

- **New Feature**
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tcomb-form",
"version": "0.9.12",
"version": "0.9.13",
"description": "React.js powered UI library for developing forms writing less code",
"main": "lib/main.js",
"files": [
Expand Down
4 changes: 2 additions & 2 deletions src/components.js
Original file line number Diff line number Diff line change
Expand Up @@ -659,8 +659,8 @@ export class List extends Component {
})
}

addItem = item => {
const value = this.state.value.concat(item)
addItem = () => {
const value = this.state.value.concat(undefined)
const keys = this.state.keys.concat(this.props.ctx.uidGenerator.next())
this.onChange(value, keys, this.props.ctx.path.concat(value.length - 1), 'add')
}
Expand Down

0 comments on commit 2f9e28c

Please sign in to comment.