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

Moved code section of identity to table format #5801

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
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
14 changes: 7 additions & 7 deletions src/sections/Community/Handbook/repository.js
Original file line number Diff line number Diff line change
Expand Up @@ -200,19 +200,19 @@ const Repository = () => {
<table key={category}>
<thead>
<tr>
<th>{category}</th>
<th>Language</th>
<th>Description</th>
<th>Maintainers</th>
<th className="linkscol">Repo</th>
<th className="table-container-head">{category}</th>
<th className="table-container-head">Language</th>
<th className="table-container-head">Description</th>
<th className="table-container-head">Maintainers</th>
<th className="linkscol table-container-head">Repo</th>
</tr>
</thead>
{backendProject.subdata.map((subdata) => {
const { project,image,language,description,repository,link,maintainers_name } = subdata;
const smpClass = project === "SMP Action";
const siteIconClasses = smpClass ? "site-icon inline smp-action" : "site-icon inline";
return (
<tbody key={project}>
<tbody className="table-container-body" key={project}>
<tr>
<td>
<img className={siteIconClasses} src={image} alt="project" />&nbsp;{project} </td>
Expand Down Expand Up @@ -254,4 +254,4 @@ const Repository = () => {
);
};

export default Repository;
export default Repository;
Loading