aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app/components')
-rw-r--r--ui/app/components/tx-list.js24
1 files changed, 13 insertions, 11 deletions
diff --git a/ui/app/components/tx-list.js b/ui/app/components/tx-list.js
index e9f0c1cef..39cf7de79 100644
--- a/ui/app/components/tx-list.js
+++ b/ui/app/components/tx-list.js
@@ -134,19 +134,21 @@ TxList.prototype.renderTransactionListItem = function () {
})
]),
- h('div.tx-list-account-wrapper', {
- style: {}
- }, [
- h('span.tx-list-account', {}, [
- '0x82df11be...7684', //address
+ h('div.tx-list-account-and-status-wrapper', {}, [
+ h('div.tx-list-account-wrapper', {
+ style: {}
+ }, [
+ h('span.tx-list-account', {}, [
+ '0x82df11be...7684', //address
+ ]),
]),
- ]),
- h('div.tx-list-status-wrapper', {
- style: {}
- }, [
- h('span.tx-list-status', {}, [
- transactionStatus,
+ h('div.tx-list-status-wrapper', {
+ style: {}
+ }, [
+ h('span.tx-list-status', {}, [
+ transactionStatus,
+ ]),
]),
]),