Skip to content

Commit 9e52fef

Browse files
committed
feat(neuron-ui): add a tooltip to display synchronized block number and the tip block number
1 parent e46f3fa commit 9e52fef

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • packages/neuron-ui/src/containers/Footer

packages/neuron-ui/src/containers/Footer/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export const SyncStatus = ({
3434
const percentage = +syncedBlockNumber / +tipBlockNumber
3535

3636
return (
37-
<div style={{ display: 'flex', alignItems: 'center' }}>
37+
<div style={{ display: 'flex', alignItems: 'center' }} title={`${syncedBlockNumber}/${tipBlockNumber}`}>
3838
{+syncedBlockNumber + bufferBlockNumber < +tipBlockNumber ? (
3939
<>
4040
{t('sync.syncing')}

0 commit comments

Comments
 (0)