aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/shift-list-item.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app/components/shift-list-item.js')
-rw-r--r--ui/app/components/shift-list-item.js28
1 files changed, 7 insertions, 21 deletions
diff --git a/ui/app/components/shift-list-item.js b/ui/app/components/shift-list-item.js
index 6e41a2ec3..9d5340447 100644
--- a/ui/app/components/shift-list-item.js
+++ b/ui/app/components/shift-list-item.js
@@ -95,29 +95,15 @@ ShiftListItem.prototype.renderUtilComponents = function () {
h(CopyButton, {
value: this.props.response.transaction,
}),
- h('.flex-row', {
+ h(EtherBalance, {
+ value: `${props.response.outgoingCoin}`,
+ width: '55px',
+ shorten: true,
style: {
- alignItems: 'baseline',
+ fontSize: '15px',
+ color: '#01888C',
},
- }, [
- h('div', {
- style: {
- fontFamily: 'Montserrat Light',
- position: 'relative',
- left: '6px',
- color: '#01888C',
- },
- }, '+'),
- h(EtherBalance, {
- value: `${props.response.outgoingCoin}`,
- width: '55px',
- shorten: true,
- style: {
- fontSize: '15px',
- color: '#01888C',
- },
- }),
- ]),
+ }),
])
case 'failed':