feat: keyword not in first 100 now shows >100

This commit is contained in:
Towfiq
2022-12-03 12:27:09 +06:00
parent c8ee418822
commit e1799fb2f3

View File

@@ -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>;