mirror of https://github.com/embarklabs/embark.git
better position columns
This commit is contained in:
parent
54ee9417db
commit
e456a76d19
|
@ -22,19 +22,19 @@ const Transactions = ({transactions, showLoadMore, loadMore}) => (
|
|||
</Link>
|
||||
</CardTitleIdenticon>
|
||||
<Row>
|
||||
<Col>
|
||||
<Col md={6}>
|
||||
<strong>Block number</strong>
|
||||
<div>{transaction.blockNumber}</div>
|
||||
</Col>
|
||||
<Col>
|
||||
<Col md={6}>
|
||||
<strong>From</strong>
|
||||
<div>{transaction.from}</div>
|
||||
</Col>
|
||||
<Col>
|
||||
<Col md={6}>
|
||||
<strong>To</strong>
|
||||
<div>{transaction.to}</div>
|
||||
</Col>
|
||||
<Col>
|
||||
<Col md={6}>
|
||||
<strong>Type</strong>
|
||||
<div>{transaction.to ? "Contract Call" : "Contract Creation"}</div>
|
||||
</Col>
|
||||
|
|
Loading…
Reference in New Issue