We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1de6c73 + e7fc9ec commit a81dc4cCopy full SHA for a81dc4c
components/SwipeListView.js
@@ -376,7 +376,7 @@ class SwipeListView extends PureComponent {
376
this.props.renderHiddenItem(rowData, rowMap);
377
const { item, index } = rowData;
378
let { key } = item;
379
- if (!key && this.props.keyExtractor) {
+ if (this.props.keyExtractor) {
380
key = this.props.keyExtractor(item, index);
381
}
382
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "react-native-swipe-list-view",
3
- "version": "3.2.5",
+ "version": "3.2.6",
4
"main": "lib/index.js",
5
"author": "Jesse Sessler <jesse.sessler@gmail.com>",
6
"description": "A ListView with rows that swipe open and closed.",
0 commit comments