Skip to content

Commit

Permalink
Add additional metrics to table
Browse files Browse the repository at this point in the history
  • Loading branch information
ipc103 authored Nov 21, 2023
1 parent 6d2c575 commit bc27e89
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion who-metrics-ui/src/components/RepositoriesTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,11 @@ const Labels: Record<string, keyof Repo> = {
License: "licenseName",
Watchers: "watchersCount",
"Open Issues": "openIssuesCount",
"Closed Issues": "closedIssuesCount",
Projects: "projectsCount",
"Open PRs": "openPullRequestsCount",
"Merged PRs": "mergedPullRequestsCount",
Forks: "forksCount",
} as const;

const headers = Object.keys(Labels);
Expand All @@ -49,7 +54,7 @@ const RepositoriesTable = () => {
alignItems="center"
>
<Title>Repositories </Title>
<Tooltip aria-label="Shows daily increase or decrease of particular domain">
<Tooltip aria-label="All of the repositories in this organization">
<InfoIcon size={24} />
</Tooltip>
</Flex>
Expand Down

0 comments on commit bc27e89

Please sign in to comment.