質問編集履歴

4

サンプルコードのkey名修正

2019/04/05 00:38

投稿

moro123
moro123

スコア18

test CHANGED
File without changes
test CHANGED
@@ -8,7 +8,7 @@
8
8
 
9
9
  ### サンプルコード
10
10
 
11
- 下記のサンプルコードで**label="A"**と**label="A-1"**と**label="A-2"**にチェックが入ってる状態(**state.form.RecordPrintDialog.values:{A:true,A-1:true,A-2:true}**)で**label="A"**のチェックを外すと**label="A-1"**と**label="A-2"**のチェクが外れる(**{A:false,A-1:false,A-2:false}**)
11
+ 下記のサンプルコードで**label="A"**と**label="A-1"**と**label="A-2"**にチェックが入ってる状態(**state.form.RecordPrintDialog.values:{plan:true,info:true,comment:true}**)で**label="A"**のチェックを外すと**label="A-1"**と**label="A-2"**のチェクが外れる(**{plan:false,info:false,comment:false}**)
12
12
 
13
13
 
14
14
 

3

タイトル名変更

2019/04/05 00:38

投稿

moro123
moro123

スコア18

test CHANGED
@@ -1 +1 @@
1
- redux-formのvaluesについて
1
+ Redux Formのvaluesについて
test CHANGED
File without changes

2

フォーム名修正

2019/04/05 00:35

投稿

moro123
moro123

スコア18

test CHANGED
File without changes
test CHANGED
@@ -8,7 +8,7 @@
8
8
 
9
9
  ### サンプルコード
10
10
 
11
- 下記のサンプルコードで**label="A"**と**label="A-1"**と**label="A-2"**にチェックが入ってる状態(**state.form.フォーム名.values:{A:true,A-1:true,A-2:true}**)で**label="A"**のチェックを外すと**label="A-1"**と**label="A-2"**のチェクが外れる(**{A:false,A-1:false,A-2:false}**)
11
+ 下記のサンプルコードで**label="A"**と**label="A-1"**と**label="A-2"**にチェックが入ってる状態(**state.form.RecordPrintDialog.values:{A:true,A-1:true,A-2:true}**)で**label="A"**のチェックを外すと**label="A-1"**と**label="A-2"**のチェクが外れる(**{A:false,A-1:false,A-2:false}**)
12
12
 
13
13
 
14
14
 

1

コンポーネント名を大文字に変更

2019/04/04 15:56

投稿

moro123
moro123

スコア18

test CHANGED
File without changes
test CHANGED
@@ -20,7 +20,7 @@
20
20
 
21
21
  import { reduxForm, Field } from 'redux-form';
22
22
 
23
- import renderCheckbox from '@/common/reduxForm/Checkbox';
23
+ import RenderCheckbox from '@/common/reduxForm/Checkbox';
24
24
 
25
25
 
26
26
 
@@ -40,7 +40,7 @@
40
40
 
41
41
  label="A"
42
42
 
43
- component={renderCheckbox}
43
+ component={RenderCheckbox}
44
44
 
45
45
  />
46
46
 
@@ -54,7 +54,7 @@
54
54
 
55
55
  label="A-1"
56
56
 
57
- component={renderCheckbox}
57
+ component={RenderCheckbox}
58
58
 
59
59
  />
60
60
 
@@ -64,7 +64,7 @@
64
64
 
65
65
  label="A-2"
66
66
 
67
- component={renderCheckbox}
67
+ component={RenderCheckbox}
68
68
 
69
69
  />
70
70