Skip to content
This repository was archived by the owner on Aug 23, 2022. It is now read-only.

Commit e32ba3b

Browse files
committed
Merge remote-tracking branch 'davidkpiano/master'
2 parents 69a49a4 + 9622205 commit e32ba3b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# React Redux Form
1+
# React Redux Form 🎃
22

33
[![Join the chat at https://gitter.im/react-redux-form/Lobby](https://badges.gitter.im/react-redux-form/Lobby.svg)](https://gitter.im/react-redux-form/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
44
[![Build Status](https://travis-ci.org/davidkpiano/react-redux-form.svg?branch=master)](https://travis-ci.org/davidkpiano/react-redux-form) [![npm version](https://badge.fury.io/js/react-redux-form.svg)](https://badge.fury.io/js/react-redux-form)
@@ -61,7 +61,7 @@ class MyForm extends React.Component {
6161
// Do anything you want with the form value
6262
console.log(val);
6363
}
64-
64+
6565
render() {
6666
return (
6767
<Form model="user" onSubmit={(val) => this.handleSubmit(val)}>

src/utils/update-sub-fields.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import i from 'icepick';
33

44
function updateSubField(subField, newSubState) {
55
// Form
6-
if (subField.$form) {
6+
if (subField && subField.$form) {
77
// intermediate value - not mutated outside function
88
const result = {};
99

0 commit comments

Comments
 (0)