CEC-1965 Cleanup (#163)
This commit is contained in:
@@ -18,6 +18,10 @@ import TableHeaderSortable from "../../Table/HeaderSortable";
|
||||
import { logger } from "../../../services/monitoring";
|
||||
|
||||
const tableColumns = [
|
||||
{
|
||||
id: "id",
|
||||
label: "ID",
|
||||
},
|
||||
{
|
||||
id: "contact",
|
||||
label: "Contact",
|
||||
@@ -115,6 +119,7 @@ const SupplierTable = (props) => {
|
||||
{suppliers.map((row, index) => {
|
||||
return (
|
||||
<TableRow key={index}>
|
||||
<TableCell align="center">{row?.id}</TableCell>
|
||||
<TableCell align="center">
|
||||
<Link to={`/supplier/${row.email}`}>{row.contact}</Link>
|
||||
</TableCell>
|
||||
|
||||
Reference in New Issue
Block a user