Skip to content

Commit 079daa1

Browse files
committed
0.1.15
1 parent 04be2fe commit 079daa1

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native-sqlite-explorer",
3-
"version": "0.1.14",
3+
"version": "0.1.15",
44
"description": "Explorer for react-native-sqlite-storage library database inside react native app",
55
"source": "./src/index.tsx",
66
"main": "./lib/commonjs/index.js",

src/components/Table/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ const Table = ({ tableData, onActionSuccess }: TableProps) => {
160160
/>
161161
)}
162162
// TODO как тут быть с ключем? поля id может и не быть
163-
keyExtractor={(item, index) => `row-${item.id}_${index}`}
163+
keyExtractor={(item, index) => `row-${item.id}_${index}_`}
164164
bounces={true}
165165
initialNumToRender={20}
166166
style={styles.TableContainer}

0 commit comments

Comments
 (0)