Skip to content

Commit

Permalink
upgrade to 0.8.3 and update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
stevehu committed Dec 30, 2019
1 parent f5b2dd5 commit 4c4c253
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

### Changed

## 0.8.3 - 2019-12-30
### Added

### Changed
- fixes #189 Check if obj is not null. Thanks @psamim


## 0.8.2 - 2019-12-24
### Added

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -138,4 +138,4 @@ See our [CONTRIBUTING.md](https://github.com/networknt/react-schema-form/CONTRIB

# License

MIT Licensed. Copyright (c) Network New Technologies Inc. 2018.
MIT Licensed. Copyright (c) Network New Technologies Inc. 2020.
2 changes: 1 addition & 1 deletion lib/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -545,7 +545,7 @@ var merge = function merge(schema, form, ignore, options, readonly) {
};
}

if (obj.key) {
if (obj && obj.key) {
if (typeof obj.key === "string") {
obj.key = _objectpath["default"].parse(obj.key);
}
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": "react-schema-form",
"version": "0.8.2",
"version": "0.8.3",
"description": "React json schema form",
"keywords": [
"json schema",
Expand Down

0 comments on commit 4c4c253

Please sign in to comment.