File tree Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -198,7 +198,7 @@ export default class DCCCard extends Component {
198
198
< Divider style = { [ styles . divisor , { borderBottomColor :this . props . colors . cardText } ] } />
199
199
200
200
< FlatList
201
- listKey = { this . cert ( ) . signature + "v" }
201
+ listKey = { this . props . detail . signature + "v" }
202
202
data = { this . cert ( ) . data . v }
203
203
keyExtractor = { item => item . ci }
204
204
renderItem = { ( { item} ) => {
@@ -238,11 +238,10 @@ export default class DCCCard extends Component {
238
238
} } />
239
239
240
240
< FlatList
241
- listKey = { this . cert ( ) . signature + "t" }
241
+ listKey = { this . props . detail . signature + "t" }
242
242
data = { this . cert ( ) . data . t }
243
243
keyExtractor = { item => item . ci }
244
244
renderItem = { ( { item} ) => {
245
- console . log ( item ) ;
246
245
return (
247
246
< View style = { styles . groupLine } >
248
247
< View style = { { alignItems : 'center' } } >
@@ -289,11 +288,10 @@ export default class DCCCard extends Component {
289
288
} } />
290
289
291
290
< FlatList
292
- listKey = { this . cert ( ) . signature + "r" }
291
+ listKey = { this . props . detail . signature + "r" }
293
292
data = { this . cert ( ) . data . r }
294
293
keyExtractor = { item => item . ci }
295
294
renderItem = { ( { item} ) => {
296
- console . log ( item ) ;
297
295
return (
298
296
< View style = { styles . groupLine } >
299
297
You can’t perform that action at this time.
0 commit comments