CFE-6 add item to expert table and change add button text in expert page

This commit is contained in:
2023-10-31 15:16:16 +03:30
parent cd90adee01
commit 5f3d2862df
2 changed files with 14 additions and 1 deletions

View File

@@ -67,6 +67,18 @@ function ExpertManagementDataTable() {
<Typography variant="body2">{renderedCellValue}</Typography>
),
},
{
accessorFn: (row) => row.telephone_id,
id: "telephone_id",
header: t("ExpertMangement.telephone_id"),
enableColumnFilter: true,
datatype: "numeric",
filterFn: "equals",
columnFilterModeOptions: ["contains", "equals", "notEquals"],
Cell: ({renderedCellValue}) => (
<Typography variant="body2">{renderedCellValue}</Typography>
),
},
{
accessorFn: (row) => row.phone_number,
id: "phone_number",