Skip to content

Commit

Permalink
feat: keyword not in first 100 now shows >100
Browse files Browse the repository at this point in the history
  • Loading branch information
towfiqi committed Dec 3, 2022
1 parent c8ee418 commit e1799fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/keywords/Keyword.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ const Keyword = (props: KeywordProps) => {

const renderPosition = () => {
if (position === 0) {
return <span title='Not in Top 100'>{'-'}</span>;
return <span className='text-gray-400' title='Not in Top 100'>{'>100'}</span>;
}
if (updating) {
return <span title='Updating Keyword Position'><Icon type="loading" /></span>;
Expand Down

0 comments on commit e1799fb

Please sign in to comment.