File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11{
22 "name" : " react-native-sqlite-explorer" ,
3- "version" : " 0.1.12 " ,
3+ "version" : " 0.1.13 " ,
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" ,
Original file line number Diff line number Diff line change @@ -86,12 +86,10 @@ const SQLiteExplorer = ({ params }: SQLiteExplorerProps) => {
8686 </ View >
8787
8888 { status === 'loading' && < Loader /> }
89- { status !== 'loading' && ! ! tableData && (
89+ { ! ! tableData && (
9090 < Table tableData = { tableData } onActionSuccess = { onActionSuccess } />
9191 ) }
92- { status !== 'loading' && ! tableData && (
93- < Text style = { styles . StatusText } > Empty</ Text >
94- ) }
92+ { ! tableData && < Text style = { styles . StatusText } > Empty</ Text > }
9593 </ View >
9694 ) ;
9795} ;
You can’t perform that action at this time.
0 commit comments