Skip to content

Commit

Permalink
fix(ui): list - add ability to override keyExtractor
Browse files Browse the repository at this point in the history
  • Loading branch information
artyorsh committed Nov 12, 2019
1 parent 0b81686 commit d5ee185
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/framework/ui/list/list.component.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -119,10 +119,10 @@ export class ListComponent extends React.Component<ListProps> {

return (
<FlatList
keyExtractor={this.keyExtractor}
{...derivedProps}
ref={this.listRef}
style={[componentStyle.container, styles.container, style]}
keyExtractor={this.keyExtractor}
renderItem={this.renderItem}
/>
);
Expand Down

0 comments on commit d5ee185

Please sign in to comment.