Label the pending tx icon with a tooltip

feature/default_network_editable
Dan Finlay 8 years ago
parent 6209224a6c
commit 3c90024564
  1. 1
      CHANGELOG.md
  2. 9
      ui/app/components/transaction-list-item-icon.js

@ -3,6 +3,7 @@
## Current Master
- Add Transaction Number (nonce) to transaction list.
- Label the pending tx icon with a tooltip.
## 3.6.5 2017-5-17

@ -1,6 +1,7 @@
const Component = require('react').Component
const h = require('react-hyperscript')
const inherits = require('util').inherits
const Tooltip = require('./tooltip')
const Identicon = require('./identicon')
@ -32,11 +33,17 @@ TransactionIcon.prototype.render = function () {
})
case 'submitted':
return h('i.fa.fa-ellipsis-h', {
return h(Tooltip, {
title: 'Pending',
position: 'bottom',
},
[
h('i.fa.fa-ellipsis-h', {
style: {
fontSize: '27px',
},
})
])
}
if (isMsg) {

Loading…
Cancel
Save