Fix: remove unneeded fragments
This commit is contained in:
parent
6b6d52d7b0
commit
c7a01f840f
5 changed files with 493 additions and 412 deletions
|
|
@ -155,19 +155,17 @@ const Transactions = ({ id }) => {
|
|||
}
|
||||
|
||||
return (
|
||||
<>
|
||||
<DataTable
|
||||
extraHeight={extraHeight}
|
||||
onClick={handleClick}
|
||||
loading={loading || id === null}
|
||||
emptyText="No transactions so far"
|
||||
elements={elements}
|
||||
// need to splice because back end query could return double NUM_LOG_RESULTS because it doesnt merge the txIn and the txOut results before applying the limit
|
||||
data={R.path(['transactions'])(txResponse)} // .splice(0,NUM_LOG_RESULTS)}
|
||||
Details={DetailsRow}
|
||||
expandable
|
||||
/>
|
||||
</>
|
||||
<DataTable
|
||||
extraHeight={extraHeight}
|
||||
onClick={handleClick}
|
||||
loading={loading || id === null}
|
||||
emptyText="No transactions so far"
|
||||
elements={elements}
|
||||
// need to splice because back end query could return double NUM_LOG_RESULTS because it doesnt merge the txIn and the txOut results before applying the limit
|
||||
data={R.path(['transactions'])(txResponse)} // .splice(0,NUM_LOG_RESULTS)}
|
||||
Details={DetailsRow}
|
||||
expandable
|
||||
/>
|
||||
)
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue