Skip to content

Commit

Permalink
feat(neuron-ui): add a tooltip to display synchronized block number a…
Browse files Browse the repository at this point in the history
…nd the tip block number
  • Loading branch information
Keith-CY committed Oct 25, 2019
1 parent e46f3fa commit 9e52fef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/neuron-ui/src/containers/Footer/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export const SyncStatus = ({
const percentage = +syncedBlockNumber / +tipBlockNumber

return (
<div style={{ display: 'flex', alignItems: 'center' }}>
<div style={{ display: 'flex', alignItems: 'center' }} title={`${syncedBlockNumber}/${tipBlockNumber}`}>
{+syncedBlockNumber + bufferBlockNumber < +tipBlockNumber ? (
<>
{t('sync.syncing')}
Expand Down

0 comments on commit 9e52fef

Please sign in to comment.