1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-08-30 20:49:49 +02:00

Change activity title

This commit is contained in:
Kamran Ahmed
2024-05-08 11:59:59 +01:00
parent 803f87de38
commit da1a5f6506
2 changed files with 4952 additions and 3966 deletions

8910
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@@ -26,16 +26,16 @@ export function ActivityTopicTitles(props: ActivityTopicTitlesProps) {
)}
>
{filteredTopicTitles.map((topicTitle, index) => (
<span key={index} className="rounded-md bg-gray-200 px-1">
<span key={index} className="rounded-md bg-gray-200 px-1.5">
{topicTitle}
</span>
))}
{shouldShowButton && (
{shouldShowButton && !showAll && (
<button
onClick={() => setShowAll(!showAll)}
className="text-gray-600 underline underline-offset-2 hover:text-black"
className="bg-white border border-black text-black rounded-md px-1.5 hover:bg-black text-xs h-[20px] hover:text-white"
>
{showAll ? '- Show less' : `+${topicTitles.length - 3} more`}
{showAll ? '- Show less' : `+${topicTitles.length - 3}`}
</button>
)}
</div>