change id to national id

This commit is contained in:
2023-07-16 15:59:31 +03:30
parent c2259031fc
commit 4e9d81ca71
2 changed files with 5 additions and 5 deletions

View File

@@ -93,7 +93,7 @@
},
"PassengerOffice": {
"name": "نام",
"id": "کد ملی",
"national_id": "کد ملی",
"phone_number": "موبایل",
"created_at": "تاریخ درخواست",
"updated_at": "تاریخ بروزرسانی",
@@ -103,7 +103,7 @@
},
"MachinaryOffice": {
"name": "نام",
"id": "کد ملی",
"national_id": "کد ملی",
"phone_number": "موبایل",
"created_at": "تاریخ درخواست",
"updated_at": "تاریخ بروزرسانی",

View File

@@ -24,9 +24,9 @@ function DashboardMachinaryOfficeComponent() {
),
},
{
accessorFn: (row) => row.id,
id: "id",
header: t("MachinaryOffice.id"),
accessorFn: (row) => row.national_id,
id: "national_id",
header: t("MachinaryOffice.national_id"),
enableColumnFilter: true,
datatype: "numeric",
filterFn: "equals",