diff --git a/src/langs/fa.json b/src/langs/fa.json
index ff75285..b3f1c16 100644
--- a/src/langs/fa.json
+++ b/src/langs/fa.json
@@ -240,7 +240,8 @@
"category": "دسته بندی",
"low": "پایین",
"medium": "متوسط",
- "high": "بالا"
+ "high": "بالا",
+ "service": "سرویس"
},
"attach": "پیوست",
"date": "تاریخ",
diff --git a/src/pages/ticket/TicketList.tsx b/src/pages/ticket/TicketList.tsx
index 3a89d3a..e055e76 100644
--- a/src/pages/ticket/TicketList.tsx
+++ b/src/pages/ticket/TicketList.tsx
@@ -71,7 +71,8 @@ const TicketList: FC = () => {
|
|
- |
+ |
+ |
|
|
|
@@ -86,6 +87,7 @@ const TicketList: FC = () => {
|
|
|
+ |
{moment(item.updatedAt).format('jYYYY-jMM-jDD HH:mm')}
diff --git a/src/pages/ticket/types/TicketTypes.ts b/src/pages/ticket/types/TicketTypes.ts
index 9ead4d5..4d92c40 100644
--- a/src/pages/ticket/types/TicketTypes.ts
+++ b/src/pages/ticket/types/TicketTypes.ts
@@ -8,6 +8,22 @@ export type TicketItemType = {
updatedAt: string;
status: string;
priority: string;
+ danakService: {
+ id: string;
+ name: string;
+ description: string;
+ icon: string;
+ link: string;
+ isActive: boolean;
+ isDanakSuggest: boolean;
+ metaDescription: string;
+ serviceLanguage: string;
+ softwareLanguage: string;
+ title: string;
+ userCount: number;
+ createdAt: string;
+ updatedAt: string;
+ };
};
export type AddMessageTicketType = {
|