Skip to content

Commit e75e626

Browse files
committed
Update organization pages
1 parent 8f7248d commit e75e626

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

backend/apps/github/graphql/nodes/repository.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
from apps.github.graphql.nodes.repository_contributor import RepositoryContributorNode
99
from apps.github.models.repository import Repository
1010

11-
RECENT_ISSUES_LIMIT = 10
12-
RECENT_RELEASES_LIMIT = 10
11+
RECENT_ISSUES_LIMIT = 5
12+
RECENT_RELEASES_LIMIT = 5
1313

1414

1515
class RepositoryNode(BaseNode):

frontend/src/components/UserCard.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { faChevronRight, faFileCode, faUser, faUsers } from '@fortawesome/free-solid-svg-icons'
1+
import { faChevronRight, faFolderOpen, faUser, faUsers } from '@fortawesome/free-solid-svg-icons'
22
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
33
import { Button } from '@heroui/button'
44
import millify from 'millify'
@@ -51,7 +51,7 @@ const UserCard = ({
5151
)}
5252
{repositories_count > 0 && (
5353
<p className="mt-1 max-w-[250px] truncate text-sm text-gray-600 dark:text-gray-400 sm:text-base">
54-
<FontAwesomeIcon icon={faFileCode} className="mr-1 h-4 w-4" />
54+
<FontAwesomeIcon icon={faFolderOpen} className="mr-1 h-4 w-4" />
5555
{millify(repositories_count, { precision: 1 })}
5656
</p>
5757
)}

0 commit comments

Comments
 (0)