developer resume
This commit is contained in:
@ -65,23 +65,25 @@ export const PartnerCategories = () => {
|
||||
{
|
||||
label: "",
|
||||
renderCell: (item) => (
|
||||
<img
|
||||
className="table__avatar"
|
||||
src={urlForLocal(item?.employee.avatar)}
|
||||
alt="avatar"
|
||||
/>
|
||||
<Link to={`/profile/summary/${item.user_id}`}>
|
||||
<img
|
||||
className="table__avatar"
|
||||
src={urlForLocal(item?.employee.avatar)}
|
||||
alt="avatar"
|
||||
/>
|
||||
</Link>
|
||||
)
|
||||
},
|
||||
{
|
||||
label: "Данные",
|
||||
renderCell: (item) => (
|
||||
<div className="table__info">
|
||||
<Link className="table__info" to={`/profile/summary/${item.user_id}`}>
|
||||
<p>{item?.employee.fio}</p>
|
||||
<span>
|
||||
{LEVELS[item?.resume.userCard.level]} /{" "}
|
||||
{SKILLS[item?.resume.userCard.position_id]}
|
||||
</span>
|
||||
</div>
|
||||
</Link>
|
||||
)
|
||||
// sort: { sortKey: "NAME" }
|
||||
},
|
||||
|
Reference in New Issue
Block a user