aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/transaction-list.js
diff options
context:
space:
mode:
authorDan Finlay <dan@danfinlay.com>2016-05-05 09:08:31 +0800
committerDan Finlay <dan@danfinlay.com>2016-05-05 09:08:31 +0800
commitf4d58ebc705287788c9eaee6025269dd78b051a1 (patch)
treeca3c94a812562ed6262a3691ac04d80d05bf53b2 /ui/app/components/transaction-list.js
parent95582f8bde3abda5b6b7cf0e027bc7913e5953ce (diff)
downloadtangerine-wallet-browser-f4d58ebc705287788c9eaee6025269dd78b051a1.tar.gz
tangerine-wallet-browser-f4d58ebc705287788c9eaee6025269dd78b051a1.tar.zst
tangerine-wallet-browser-f4d58ebc705287788c9eaee6025269dd78b051a1.zip
Move account export to subview
Account detail view now has an animated transitioning `subview` section that allows us to show extra details within it. Clicking `export` now slide replaces the transaction list with the export UI. Added cancel/done/submit buttons to the Export UI. Done submits like Enter did, the other two transition back to the transaction list. For some reason when first unlocking, the selected account is being instantly replaced with the accounts list, so I need to fix that before merging this into master.
Diffstat (limited to 'ui/app/components/transaction-list.js')
-rw-r--r--ui/app/components/transaction-list.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/app/components/transaction-list.js b/ui/app/components/transaction-list.js
index 99a325e35..90f2955e6 100644
--- a/ui/app/components/transaction-list.js
+++ b/ui/app/components/transaction-list.js
@@ -4,7 +4,7 @@ const addressSummary = require('../util').addressSummary
const explorerLink = require('../../lib/explorer-link')
module.exports = function(transactions, network) {
- return h('details', [
+ return h('details', { key: 'transaction-list' }, [
h('summary', [
h('div.font-small', {style: {display: 'inline'}}, 'Transactions'),