Skip to content

Commit

Permalink
0.1.15
Browse files Browse the repository at this point in the history
  • Loading branch information
Henus321 committed Aug 26, 2024
1 parent 04be2fe commit 079daa1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-native-sqlite-explorer",
"version": "0.1.14",
"version": "0.1.15",
"description": "Explorer for react-native-sqlite-storage library database inside react native app",
"source": "./src/index.tsx",
"main": "./lib/commonjs/index.js",
Expand Down
2 changes: 1 addition & 1 deletion src/components/Table/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ const Table = ({ tableData, onActionSuccess }: TableProps) => {
/>
)}
// TODO как тут быть с ключем? поля id может и не быть
keyExtractor={(item, index) => `row-${item.id}_${index}`}
keyExtractor={(item, index) => `row-${item.id}_${index}_`}
bounces={true}
initialNumToRender={20}
style={styles.TableContainer}
Expand Down

0 comments on commit 079daa1

Please sign in to comment.