LoginSignup
3
3

More than 5 years have passed since last update.

redux-formのaddField()のバグ?うまく動かないときは初期値を設定する

Last updated at Posted at 2016-03-07

もしかしたらreact-bootstrapと併用しているのが原因かもしれないけど検証する時間がないので一旦メモ。
初期値を未設定にしたり、nullを設定すると、前の初期値が設定されてしまったりするバグ?があるので、初期値はちゃんと設定しておく。

// NG
items.addField()

// NG
items.addField({foo: null, bar: null})

// OK
items.addField({foo: 0, bar: 'xxx'})
3
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
3