mirror of
https://github.com/kamranahmedse/developer-roadmap.git
synced 2025-01-17 22:28:32 +01:00
Format result count
This commit is contained in:
parent
7cffcccfe8
commit
d880f84e0a
@ -57,8 +57,11 @@ export function ExploreAISearch(props: ExploreAISearchProps) {
|
||||
)}
|
||||
</div>
|
||||
{total > 0 && (
|
||||
<p className="flex-shrink-0 text-sm text-gray-500">
|
||||
{total} results found
|
||||
<p className="flex-shrink-0 text-sm text-gray-500 hidden sm:block">
|
||||
{Intl.NumberFormat('en-US', {
|
||||
notation: 'compact',
|
||||
}).format(total)}{' '}
|
||||
results found
|
||||
</p>
|
||||
)}
|
||||
</div>
|
||||
|
Loading…
x
Reference in New Issue
Block a user