diff --git a/js/page/wallet.js b/js/page/wallet.js index 32709640e..7156967ff 100644 --- a/js/page/wallet.js +++ b/js/page/wallet.js @@ -133,11 +133,11 @@ var WalletPage = React.createClass({ } else { var condensedTransactions = {}; var rows = []; - rows.push( - Amount - Time - Date - Transaction + rows.push( + Amount + Time + Date + Transaction ); results.forEach(function(tx) { var txid = tx["txid"]; @@ -151,18 +151,18 @@ var WalletPage = React.createClass({ var txval = condensedTransactions[txid]; var txdate = new Date(parseInt(tx["time"])*1000); if (txid in condensedTransactions && txval != 0) { - rows.push( - { (txval>0 ? '+' : '' ) + txval } - { txdate.toLocaleTimeString() } - { txdate.toLocaleDateString() } - + rows.push( + { (txval>0 ? '+' : '' ) + txval } + { txdate.toLocaleTimeString() } + { txdate.toLocaleDateString() } + {txid} ); delete condensedTransactions[tx["txid"]]; } }); - out = {rows}
+ out = {rows}
} this.setState({ txlog: out, @@ -182,7 +182,7 @@ var WalletPage = React.createClass({

Claim Invite Code

-
+

Transaction History

{this.state.txlog}
diff --git a/scss/_gui.scss b/scss/_gui.scss index fc207d46e..5b7df0e5b 100644 --- a/scss/_gui.scss +++ b/scss/_gui.scss @@ -212,12 +212,3 @@ input[type="text"], input[type="search"], textarea margin-top: $spacing-vertical; } } - -td.transaction_history, tr.transaction_history { - padding: 4px; -} -a.transaction_explorer_link { - color: $color-primary; - text-decoration: underline; - font-family: monospace; -}