Skip to content
This repository has been archived by the owner on Jul 22, 2020. It is now read-only.

Commit

Permalink
fix: add tooltips to validators table columns
Browse files Browse the repository at this point in the history
  • Loading branch information
manuel-calavera committed Oct 8, 2019
1 parent 6521a46 commit 66acd0c
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions src/v2/components/Validators/Table/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ import Avatar from 'v2/components/UI/Avatar';
import {LAMPORT_SOL_RATIO} from '../../../constants';
import Socket from '../../../stores/socket';
import Loader from '../../UI/Loader';
import HelpLink from '../../HelpLink';
import useStyles from './styles';

const ValidatorsTable = ({separate}: {separate: boolean}) => {
Expand Down Expand Up @@ -112,10 +113,18 @@ const ValidatorsTable = ({separate}: {separate: boolean}) => {
<Table>
<TableHead className={classes.head}>
<TableRow>
<TableCell align="center">Name/Moniker</TableCell>
<TableCell width={170}>Staked SOL</TableCell>
<TableCell width={170}>Commission</TableCell>
<TableCell width={130}>Uptime</TableCell>
<TableCell align="center">
Name/Moniker <HelpLink text="" term="" />
</TableCell>
<TableCell width={170}>
Staked SOL <HelpLink text="" term="" />
</TableCell>
<TableCell width={190}>
Commission <HelpLink text="" term="" />
</TableCell>
<TableCell width={130}>
Uptime <HelpLink text="" term="" />
</TableCell>
</TableRow>
</TableHead>
<TableBody
Expand Down

0 comments on commit 66acd0c

Please sign in to comment.