Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: removed activity column from contributor grid #3206

Merged
merged 2 commits into from
Apr 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,7 @@ const ContributorListTableHeaders = ({ selected, handleOnSelectAllContributor }:
<div className={clsx("flex-1 lg:min-w-[12.5rem] flex justify-center")}>
<TableTitle>Contributor</TableTitle>
</div>
<div className={clsx(" flex-1 lg:max-w-[6.25rem] flex justify-center ")}>
<TableTitle>Act</TableTitle>
</div>

<div className={clsx("flex-1 lg:max-w-[6.25rem] ")}>
<TableTitle>Repositories</TableTitle>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -194,10 +194,6 @@ const ContributorListTableRow = ({
<div className={clsx("flex-1 lg:min-w-[12.5rem] overflow-hidden")}>
<DevProfile username={login} hasBorder={!contributor.author_login} />
</div>
{/* Column: Act */}
<div className={clsx("flex-1 flex lg:max-w-[6.25rem] w-fit justify-center")}>
{contributor.author_login ? getActivity(totalPrs, false) : "-"}
</div>

{/* Column Repositories */}
<div className={clsx("flex-1 lg:max-w-[6.25rem] flex justify-center ")}>
Expand Down
Loading