Skip to content

Commit

Permalink
feat: Keyword ranking pages can now be clicked.
Browse files Browse the repository at this point in the history
  • Loading branch information
towfiqi committed Feb 15, 2023
1 parent c406588 commit c5af94a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion components/keywords/Keyword.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,10 @@ const Keyword = (props: KeywordProps) => {
<div
className={`keyword_url inline-block mt-4 mr-5 ml-5 lg:flex-1 text-gray-400 lg:m-0 max-w-[70px]
overflow-hidden text-ellipsis whitespace-nowrap lg:max-w-none lg:pr-5`}>
<span className='mr-3 lg:hidden'><Icon type="link-alt" size={14} color="#999" /></span>{turncatedURL || '-'}</div>
<a href={url} target="_blank" rel="noreferrer"><span className='mr-3 lg:hidden'>
<Icon type="link-alt" size={14} color="#999" /></span>{turncatedURL || '-'}
</a>
</div>
<div
className='inline-block mt-[4] top-[-5px] relative lg:flex-1 lg:m-0'>
<span className='mr-2 lg:hidden'><Icon type="clock" size={14} color="#999" /></span>
Expand Down

0 comments on commit c5af94a

Please sign in to comment.