Skip to content

Commit

Permalink
Bugfix on the signature fields
Browse files Browse the repository at this point in the history
  • Loading branch information
vitorpamplona committed Oct 5, 2021
1 parent be94864 commit 448ea3c
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions app/components/DCCCard.js
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ export default class DCCCard extends Component {
<Divider style={[styles.divisor, {borderBottomColor:this.props.colors.cardText}]} />

<FlatList
listKey={this.cert().signature+"v"}
listKey={this.props.detail.signature+"v"}
data={this.cert().data.v}
keyExtractor={item => item.ci}
renderItem={({item}) => {
Expand Down Expand Up @@ -238,11 +238,10 @@ export default class DCCCard extends Component {
}} />

<FlatList
listKey={this.cert().signature+"t"}
listKey={this.props.detail.signature+"t"}
data={this.cert().data.t}
keyExtractor={item => item.ci}
renderItem={({item}) => {
console.log(item);
return (
<View style={styles.groupLine}>
<View style={{alignItems: 'center'}}>
Expand Down Expand Up @@ -289,11 +288,10 @@ export default class DCCCard extends Component {
}} />

<FlatList
listKey={this.cert().signature+"r"}
listKey={this.props.detail.signature+"r"}
data={this.cert().data.r}
keyExtractor={item => item.ci}
renderItem={({item}) => {
console.log(item);
return (
<View style={styles.groupLine}>

Expand Down

0 comments on commit 448ea3c

Please sign in to comment.