質問編集履歴
1
追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -136,6 +136,32 @@
|
|
136
136
|
|
137
137
|
```
|
138
138
|
|
139
|
+
|
140
|
+
|
141
|
+
試したこと
|
142
|
+
|
143
|
+
```
|
144
|
+
|
145
|
+
if ( key == sample_labels ) {
|
146
|
+
|
147
|
+
let addValue = { sample_id: id, sample_labels: newValue }
|
148
|
+
|
149
|
+
}
|
150
|
+
|
151
|
+
if ( key == sample_data ) {
|
152
|
+
|
153
|
+
let addValue = { sample_id: id, sample_data: newValue }
|
154
|
+
|
155
|
+
}
|
156
|
+
|
157
|
+
items.map(item => (item.sample_id === id ? setState(addValue) : item))
|
158
|
+
|
159
|
+
```
|
160
|
+
|
161
|
+
これでは保存されないです
|
162
|
+
|
163
|
+
|
164
|
+
|
139
165
|
お心優しい方アドバイスいただきたいです
|
140
166
|
|
141
167
|
|