Commit 000a47e2 authored by tom's avatar tom

add link to items

parent 2ca15261
...@@ -2,6 +2,7 @@ import { Flex, Text, useColorModeValue } from '@chakra-ui/react'; ...@@ -2,6 +2,7 @@ import { Flex, Text, useColorModeValue } from '@chakra-ui/react';
import BigNumber from 'bignumber.js'; import BigNumber from 'bignumber.js';
import React from 'react'; import React from 'react';
import link from 'lib/link/link';
import HashStringShorten from 'ui/shared/HashStringShorten'; import HashStringShorten from 'ui/shared/HashStringShorten';
import TokenLogo from 'ui/shared/TokenLogo'; import TokenLogo from 'ui/shared/TokenLogo';
...@@ -38,6 +39,9 @@ const TokenSelectItem = ({ data }: Props) => { ...@@ -38,6 +39,9 @@ const TokenSelectItem = ({ data }: Props) => {
} }
})(); })();
// TODO add filter param when token page is ready
const url = link('token_index', { hash: data.token.address });
return ( return (
<Flex <Flex
px={ 1 } px={ 1 }
...@@ -52,6 +56,8 @@ const TokenSelectItem = ({ data }: Props) => { ...@@ -52,6 +56,8 @@ const TokenSelectItem = ({ data }: Props) => {
}} }}
fontSize="sm" fontSize="sm"
cursor="pointer" cursor="pointer"
as="a"
href={ url }
> >
<Flex alignItems="center" w="100%"> <Flex alignItems="center" w="100%">
<TokenLogo hash={ data.token.address } name={ data.token.name } boxSize={ 6 }/> <TokenLogo hash={ data.token.address } name={ data.token.name } boxSize={ 6 }/>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment